111 lines
2.4 KiB
PHP
111 lines
2.4 KiB
PHP
<?php
|
|
/**
|
|
* Class responsible for Event Plugin related admin notices.
|
|
*
|
|
* Notices for guiding to proper configuration of ActivityPub with event plugins.
|
|
*
|
|
* @package Activitypub_Event_Extensions
|
|
* @since 1.0.0
|
|
*/
|
|
|
|
namespace Activitypub_Event_Extensions\Admin;
|
|
|
|
use Activitypub_Event_Extensions\Setup;
|
|
|
|
/**
|
|
* Class responsible for Event Plugin related admin notices.
|
|
*
|
|
* Notices for guiding to proper configuration of ActivityPub with event plugins.
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
class Settings_Page {
|
|
|
|
/*
|
|
* TODO:
|
|
* - [ ] create settings page
|
|
* - [ ] skeleton
|
|
* - [ ] Autoloader
|
|
* - [ ] Common settings?
|
|
* - [ ] Hook points
|
|
* - [ ] let transformers hook settings into the page
|
|
* - [ ] provide setting-type-classes for hooks
|
|
* - [ ] True/False
|
|
* - [ ] Number
|
|
* - [ ] advanced for mapping
|
|
*/
|
|
|
|
const static = 'Activitypub_Event_Extensions\Admin\Settings_Page';
|
|
const settings_slug = 'activitypub-events';
|
|
|
|
/**
|
|
* Warning if the plugin is Active and the ActivityPub plugin is not.
|
|
*/
|
|
public static function admin_menu() {
|
|
\add_options_page(
|
|
'Activitypub Event Extension',
|
|
'Activitypub Events',
|
|
'manage_options',
|
|
'activitypub-events',
|
|
array( self::static, 'settings_page' )
|
|
);
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function settings_page() {
|
|
if ( empty( $_GET['tab'] ) ) {
|
|
$tab = 'general';
|
|
} else {
|
|
$tab = sanitize_key( $_GET['tab'] );
|
|
}
|
|
|
|
/*
|
|
submenu_options = {
|
|
tab => {name => ''
|
|
active => true|false}
|
|
}
|
|
*/
|
|
|
|
// todo generate this somehow
|
|
// maybe with filters, similar as with the settings
|
|
$submenu_options = array(
|
|
'general' => array(
|
|
'name' => 'General',
|
|
'active' => false
|
|
),
|
|
'events_manager' => array(
|
|
'name' => 'Events Manager',
|
|
'active' => false,
|
|
),
|
|
'gatherpress' => array(
|
|
'name' => 'Gatherpress',
|
|
'active' => false,
|
|
),
|
|
'the_events_calendar' => array(
|
|
'name' => 'The Events Calendar',
|
|
'active' => false,
|
|
),
|
|
'vsel' => array(
|
|
'name' => 'VS Event',
|
|
'active' => false,
|
|
),
|
|
);
|
|
|
|
$submenu_options[$tab]['active'] = true;
|
|
|
|
|
|
|
|
switch ( $tab ) {
|
|
case 'general':
|
|
\load_template( ACTIVITYPUB_EVENT_EXTENSIONS_PLUGIN_DIR . 'templates/settings-general.php' , true, $submenu_options );
|
|
break;
|
|
default:
|
|
\load_template( ACTIVITYPUB_EVENT_EXTENSIONS_PLUGIN_DIR . 'templates/settings-extractor.php', true, $submenu_options );
|
|
break;
|
|
}
|
|
|
|
}
|
|
|
|
}
|