File tree Expand file tree Collapse file tree 3 files changed +631
-0
lines changed
Expand file tree Collapse file tree 3 files changed +631
-0
lines changed Original file line number Diff line number Diff line change 1+ // Display General Overview
2+ function toggle_general ( ) {
3+ jQuery ( '#GeneralOverview' ) . show ( ) ;
4+ jQuery ( '#PHPinfo' ) . hide ( ) ;
5+ jQuery ( '#MYSQLinfo' ) . hide ( ) ;
6+ jQuery ( '#memcachedinfo' ) . hide ( ) ;
7+ }
8+
9+ // Display PHP Information
10+ function toggle_php ( ) {
11+ jQuery ( '#GeneralOverview' ) . hide ( ) ;
12+ jQuery ( '#PHPinfo' ) . show ( ) ;
13+ jQuery ( '#MYSQLinfo' ) . hide ( ) ;
14+ jQuery ( '#memcachedinfo' ) . hide ( ) ;
15+ }
16+
17+ // Display MYSQL Information
18+ function toggle_mysql ( ) {
19+ jQuery ( '#GeneralOverview' ) . hide ( ) ;
20+ jQuery ( '#PHPinfo' ) . hide ( ) ;
21+ jQuery ( '#MYSQLinfo' ) . show ( ) ;
22+ jQuery ( '#memcachedinfo' ) . hide ( ) ;
23+ }
24+
25+ // Display memcached Information
26+ function toggle_memcached ( ) {
27+ jQuery ( '#GeneralOverview' ) . hide ( ) ;
28+ jQuery ( '#PHPinfo' ) . hide ( ) ;
29+ jQuery ( '#MYSQLinfo' ) . hide ( ) ;
30+ jQuery ( '#memcachedinfo' ) . show ( ) ;
31+ }
You can’t perform that action at this time.
0 commit comments