Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Wiki Maintenance
#24
I've come up with this:
PHP Code:
function dynamic_page_type( array $pairs )
{
    foreach( 
$pairs as $page_type => $action )
    {
        if( isset( 
$_GET$action ] ) ){
            return 
$page_type;
        }
    }


So if there are two actions like those:
PHP Code:
add_action'pages-sidebar''createSideMenu', array( $thisfile'Pages Option''pages_opt' ) );
add_action'plugins-sidebar''createSideMenu', array( $thisfile'Plugins Option''plugins_opt' ) ); 
that need to be visible and active on pages tab and plugins tab accordingly, the register_plugin() would look like this:

PHP Code:
register_plugin(
    
$thisfile,    # Plugin id
    
'MyPlugin',    # Plugin name
    
'1.0.0',     # Plugin version
    
'John Hancock',            # Plugin author
    
'http://website.com',    # author website
    
'A plugin that does things.',    # Plugin description
    
    # page type - on which admin tab to display
    
dynamic_page_type( array( 'pages' => 'pages_opt''plugins' => 'plugins_opt' ) ),
                
    
'run_MyPlugin'    # main function (administration)
); 

Maybe GS should have something like that natively?
Reply


Messages In This Thread
Wiki Maintenance - by shawn_a - 2013-10-30, 07:19:20
RE: Wiki Mainenance - by shawn_a - 2013-10-30, 07:27:01
RE: Wiki Mainenance - by shawn_a - 2013-10-30, 07:32:48
RE: Wiki Mainenance - by shawn_a - 2013-10-30, 23:32:45
RE: Wiki Mainenance - by shawn_a - 2013-10-31, 03:42:00
RE: Wiki Mainenance - by datiswous - 2013-10-31, 13:15:33
RE: Wiki Mainenance - by datiswous - 2013-10-31, 14:03:05
RE: Wiki Mainenance - by Timbow - 2013-10-31, 21:08:51
RE: Wiki Mainenance - by datiswous - 2013-11-03, 10:55:09
RE: Wiki Mainenance - by shawn_a - 2013-10-31, 23:29:58
RE: Wiki Mainenance - by shawn_a - 2013-10-31, 23:31:13
RE: Wiki Mainenance - by hameau - 2013-11-01, 03:42:22
RE: Wiki Mainenance - by shawn_a - 2013-11-03, 11:27:57
RE: Wiki Mainenance - by datiswous - 2013-11-06, 07:16:15
RE: Wiki Mainenance - by datiswous - 2013-11-15, 21:50:47
RE: Wiki Mainenance - by n00dles101 - 2013-11-15, 22:00:45
RE: Wiki Mainenance - by datiswous - 2013-11-26, 05:00:06
RE: Wiki Mainenance - by shawn_a - 2013-11-26, 05:51:50
RE: Wiki Mainenance - by datiswous - 2013-11-30, 08:02:14
RE: Wiki Mainenance - by shawn_a - 2013-11-30, 08:27:21
RE: Wiki Mainenance - by Everyone - 2014-01-04, 00:42:53
RE: Wiki Mainenance - by shawn_a - 2014-01-04, 01:56:19
RE: Wiki Mainenance - by Everyone - 2014-01-04, 23:57:57
RE: Wiki Mainenance - by Everyone - 2014-01-05, 01:01:27
RE: Wiki Mainenance - by shawn_a - 2014-01-05, 08:42:55
RE: Wiki Mainenance - by Everyone - 2014-01-09, 08:55:44
RE: Wiki Mainenance - by shawn_a - 2014-01-10, 05:44:40
RE: Wiki Mainenance - by datiswous - 2014-01-14, 00:07:43
RE: Wiki Mainenance - by shawn_a - 2014-01-14, 00:21:35
RE: Wiki Mainenance - by datiswous - 2014-01-16, 08:41:37
RE: Wiki Mainenance - by shawn_a - 2014-01-16, 08:56:08
RE: Wiki Mainenance - by datiswous - 2014-01-16, 09:17:59
RE: Wiki Mainenance - by shawn_a - 2014-01-16, 10:40:48
RE: Wiki Mainenance - by shawn_a - 2014-01-18, 00:23:34
RE: Wiki Mainenance - by datiswous - 2014-01-18, 09:51:02
RE: Wiki Mainenance - by shawn_a - 2014-01-31, 00:34:38
RE: Wiki Mainenance - by shawn_a - 2014-01-31, 00:36:12
RE: Wiki Mainenance - by datiswous - 2014-02-13, 20:33:00
RE: Wiki Mainenance - by shawn_a - 2014-02-13, 23:59:37
RE: Wiki Mainenance - by shawn_a - 2014-03-05, 03:17:43
RE: Wiki Mainenance - by datiswous - 2014-03-06, 11:00:20
RE: Wiki Mainenance - by shawn_a - 2014-03-06, 11:26:04
RE: Wiki Mainenance - by datiswous - 2014-03-06, 13:37:02
RE: Wiki Mainenance - by shawn_a - 2014-03-08, 05:25:07
RE: Wiki Mainenance - by shawn_a - 2014-07-24, 06:24:23
RE: Wiki Mainenance - by Timbow - 2014-07-24, 07:13:11
RE: Wiki Mainenance - by shawn_a - 2014-07-24, 10:01:51
RE: Wiki Mainenance - by datiswous - 2014-12-02, 20:28:39
RE: Wiki Mainenance - by datiswous - 2015-01-23, 05:51:49
RE: Wiki Mainenance - by shawn_a - 2015-01-23, 06:31:58
RE: Wiki Mainenance - by datiswous - 2015-01-23, 06:40:30
RE: Wiki Mainenance - by shawn_a - 2015-01-23, 06:55:03
RE: Wiki Mainenance - by shawn_a - 2015-01-23, 07:29:39
RE: Wiki Mainenance - by datiswous - 2015-01-23, 07:35:01
RE: Wiki Mainenance - by shawn_a - 2015-01-23, 07:36:32
RE: Wiki Mainenance - by shawn_a - 2015-01-23, 07:37:17
RE: Wiki Mainenance - by datiswous - 2015-01-23, 08:07:16
RE: Wiki Mainenance - by Carlos - 2015-01-24, 20:27:39
RE: Wiki Mainenance - by shawn_a - 2015-01-25, 00:52:00
RE: Wiki Mainenance - by datiswous - 2016-04-25, 19:58:26
RE: Wiki Mainenance - by datiswous - 2016-04-29, 20:14:17
RE: Wiki Mainenance - by shawn_a - 2016-04-29, 23:06:17
RE: Wiki Mainenance - by datiswous - 2016-04-30, 06:27:54
RE: Wiki Mainenance - by datiswous - 2016-06-15, 22:02:03
RE: Wiki Mainenance - by ferby - 2016-07-01, 20:13:25
RE: Wiki Mainenance - by shawn_a - 2016-07-01, 22:06:53
RE: Wiki Mainenance - by ferby - 2016-07-01, 22:44:09
RE: Wiki Mainenance - by shawn_a - 2016-07-01, 23:01:31
RE: Wiki Mainenance - by shawn_a - 2016-07-01, 23:16:17
RE: Wiki Mainenance - by datiswous - 2018-03-01, 11:05:34



Users browsing this thread: 1 Guest(s)