Viewing File: /home/rtsgrob/ww6/wp-content/themes/synergia/framework/lib/qodef.framework.php
<?php
/*
Class: SynergiaSelectFramework
A class that initializes Qode Framework
*/
class SynergiaSelectFramework {
private static $instance;
public $qodeOptions;
public $qodeMetaBoxes;
public $qodeTaxonomyOptions;
public $qodeUserOptions;
private $skin;
private function __construct() {
$this->qodeOptions = SynergiaSelectOptions::get_instance();
$this->qodeMetaBoxes = SynergiaSelectMetaBoxes::get_instance();
$this->qodeTaxonomyOptions = SynergiaSelectTaxonomyOptions::get_instance();
$this->qodeUserOptions = SynergiaSelectUserOptions::get_instance();
}
public static function get_instance() {
if ( null == self::$instance ) {
self::$instance = new self;
}
return self::$instance;
}
public function getSkin() {
return $this->skin;
}
public function setSkin( SynergiaSelectSkinAbstract $skinObject ) {
$this->skin = $skinObject;
}
}
/**
* Class SynergiaSelectSkinManager
*
* Class that used like a factory for skins.
* It loads required skin file and instantiates skin class
*/
class SynergiaSelectSkinManager {
/**
* @var this will be an instance of skin
*/
private $skin;
/**
* @see SynergiaSelectSkinManager::setSkin()
*/
public function __construct() {
$this->setSkin();
}
/**
* Loads wanted skin, instantiates skin class and stores it in $skin attribute
*
* @param string $skinName skin to load. Must match skin folder name
*/
private function setSkin( $skinName = 'select' ) {
if ( $skinName !== '' ) {
if ( file_exists( get_template_directory() . '/framework/admin/skins/' . $skinName . '/skin.php' ) ) {
require_once get_template_directory() . '/framework/admin/skins/' . $skinName . '/skin.php';
$skinName = ucfirst( $skinName ) . 'Skin';
$this->skin = new $skinName();
}
} else {
$this->skin = false;
}
}
/**
* Returns current skin object. It $skin attribute isn't set it calls setSkin method
*
* @return mixed
*
* @see SynergiaSelectSkinManager::setSkin()
*/
public function getSkin() {
if ( empty( $this->skin ) ) {
$this->setSkin();
}
return $this->skin;
}
}
/**
* Class SynergiaSelectSkinAbstract
*
* Abstract class that each skin class must extend
*/
abstract class SynergiaSelectSkinAbstract {
/**
* @var string
*/
protected $skinName;
/**
* @var array of styles that skin will be including
*/
protected $styles;
/**
* @var array of scripts that skin will be including
*/
protected $scripts;
/**
* @var array of icons names for each menu item that theme is adding
*/
protected $icons;
/**
* @var array of menu items positions of each menu item that theme is adding
*/
protected $itemPosition;
/**
* Returns skin name attribute whenever skin is used in concatenation
* @return mixed
*/
public function __toString() {
return $this->skinName;
}
/**
* @return mixed
*/
public function getSkinName() {
return $this->skinName;
}
/**
* Loads template part with params. Uses locate_template function which is child theme friendly
*
* @param $template string template to load
* @param array $params parameters to pass to template
*/
public function loadTemplatePart( $template, $params = array() ) {
if ( is_array( $params ) && count( $params ) ) {
extract( $params );
}
if ( $template !== '' ) {
include( synergia_select_find_template_path( 'framework/admin/skins/' . $this->skinName . '/templates/' . $template . '.php' ) );
}
}
/**
* Goes through each added scripts and enqueus it
*/
public function enqueueScripts() {
if ( is_array( $this->scripts ) && count( $this->scripts ) ) {
foreach ( $this->scripts as $scriptHandle => $scriptPath ) {
wp_enqueue_script( $scriptHandle );
}
}
}
/**
* Goes through each added styles and enqueus it
*/
public function enqueueStyles() {
if ( is_array( $this->styles ) && count( $this->styles ) ) {
foreach ( $this->styles as $styleHandle => $stylePath ) {
wp_enqueue_style( $styleHandle );
}
}
}
/**
* Echoes script tag that generates global variable that will be used in TinyMCE
*/
public function setShortcodeJSParams() { ?>
<script>
window.qodeSCIcon = '<?php echo synergia_select_get_skin_uri() . '/assets/img/admin-logo-icon.png'; ?>';
window.qodeSCLabel = '<?php echo esc_html( ucfirst( $this->skinName ) ); ?> <?php esc_html_e( 'Shortcodes', 'synergia' ) ?>';
</script>
<?php }
/**
* Formates skin name so it can be used in concatenation
* @return string
*/
public function getSkinLabel() {
return ucfirst( $this->skinName );
}
/**
* Returns URI to skin folder
* @return string
*/
public function getSkinURI() {
return get_template_directory_uri() . '/framework/admin/skins/' . $this->skinName;
}
/**
* Here options page content will be generated
* @return mixed
*/
public abstract function renderOptions();
/**
* Here backup options page will be generated
* @return mixed
*/
public abstract function renderBackupOptions();
/**
* Here import page will be generated
* @return mixed
*/
public abstract function renderImport();
/**
* Here all scripts will be registered
* @return mixed
*/
public abstract function registerScripts();
/**
* Here all styles will be registered
* @return mixed
*/
public abstract function registerStyles();
}
/*
Class: SynergiaSelectOptions
A class that initializes Select Options
*/
class SynergiaSelectOptions {
private static $instance;
public $adminPages;
public $options;
public $optionsByType;
private function __construct() {
$this->adminPages = array();
$this->options = array();
$this->optionsByType = array();
}
public static function get_instance() {
if ( null == self::$instance ) {
self::$instance = new self;
}
return self::$instance;
}
public function addAdminPage( $key, $page ) {
$this->adminPages[ $key ] = $page;
}
public function getAdminPage( $key ) {
return $this->adminPages[ $key ];
}
public function adminPageExists( $key ) {
return array_key_exists( $key, $this->adminPages );
}
public function getAdminPageFromSlug( $slug ) {
foreach ( $this->adminPages as $key => $page ) {
if ( $page->slug == $slug ) {
return $page;
}
}
return;
}
public function addOption( $key, $value, $type = '' ) {
$this->options[ $key ] = $value;
$this->addOptionByType( $type, $key );
}
public function getOption( $key ) {
if ( isset( $this->options[ $key ] ) ) {
return $this->options[ $key ];
}
return;
}
public function addOptionByType( $type, $key ) {
$this->optionsByType[ $type ][] = $key;
}
public function getOptionsByType( $type ) {
if ( array_key_exists( $type, $this->optionsByType ) ) {
return $this->optionsByType[ $type ];
}
return false;
}
public function getOptionValue( $key ) {
global $synergia_options;
if ( array_key_exists( $key, $synergia_options ) ) {
return $synergia_options[ $key ];
} elseif ( array_key_exists( $key, $this->options ) ) {
return $this->getOption( $key );
}
return false;
}
}
/*
Class: SynergiaSelectAdminPage
A class that initializes Qode Admin Page
*/
class SynergiaSelectAdminPage implements iSynergiaSelectLayoutNode {
public $layout;
private $factory;
public $slug;
public $title;
public $icon;
function __construct( $slug = "", $title_label = "", $icon = "" ) {
$this->layout = array();
$this->factory = new SynergiaSelectFieldFactory();
$this->slug = $slug;
$this->title = $title_label;
$this->icon = $icon;
}
public function hasChidren() {
return ( count( $this->layout ) > 0 ) ? true : false;
}
public function getChild( $key ) {
return $this->layout[ $key ];
}
public function addChild( $key, $value ) {
$this->layout[ $key ] = $value;
}
function render() {
foreach ( $this->layout as $child ) {
$this->renderChild( $child );
}
}
public function renderChild( iSynergiaSelectRender $child ) {
$child->render( $this->factory );
}
}
/*
Class: SynergiaSelectMetaBoxes
A class that initializes Qode Meta Boxes
*/
class SynergiaSelectMetaBoxes {
private static $instance;
public $metaBoxes;
public $options;
public $optionsByType;
private function __construct() {
$this->metaBoxes = array();
$this->options = array();
$this->optionsByType = array();
}
public static function get_instance() {
if ( null == self::$instance ) {
self::$instance = new self;
}
return self::$instance;
}
public function addMetaBox( $key, $box ) {
$this->metaBoxes[ $key ] = $box;
}
public function getMetaBox( $key ) {
return $this->metaBoxes[ $key ];
}
public function addOption( $key, $value, $type = '' ) {
$this->options[ $key ] = $value;
$this->addOptionByType($type, $key);
}
public function getOption( $key ) {
if ( isset( $this->options[ $key ] ) ) {
return $this->options[ $key ];
}
return;
}
public function addOptionByType($type, $key) {
$this->optionsByType[$type][] = $key;
}
public function getOptionsByType($type) {
if(array_key_exists($type, $this->optionsByType)) {
return $this->optionsByType[$type];
}
return array();
}
public function getMetaBoxesByScope( $scope ) {
$boxes = array();
if ( is_array( $this->metaBoxes ) && count( $this->metaBoxes ) ) {
foreach ( $this->metaBoxes as $metabox ) {
if ( is_array( $metabox->scope ) && in_array( $scope, $metabox->scope ) ) {
$boxes[] = $metabox;
} elseif ( $metabox->scope !== '' && $metabox->scope === $scope ) {
$boxes[] = $metabox;
}
}
}
return $boxes;
}
}
/*
Class: SynergiaSelectMetaBox
A class that initializes Qode Meta Box
*/
class SynergiaSelectMetaBox implements iSynergiaSelectLayoutNode {
public $layout;
private $factory;
public $scope;
public $title;
public $hidden_property;
public $hidden_values = array();
public $name;
function __construct( $scope = "", $title_label = "", $hidden_property = "", $hidden_values = array(), $name = '' ) {
$this->layout = array();
$this->factory = new SynergiaSelectFieldFactory();
$this->scope = $scope;
$this->title = $this->setTitle( $title_label );
$this->hidden_property = $hidden_property;
$this->hidden_values = $hidden_values;
$this->name = $name;
}
public function hasChidren() {
return ( count( $this->layout ) > 0 ) ? true : false;
}
public function getChild( $key ) {
return $this->layout[ $key ];
}
public function addChild( $key, $value ) {
$this->layout[ $key ] = $value;
}
function render() {
foreach ( $this->layout as $child ) {
$this->renderChild( $child );
}
}
public function renderChild( iSynergiaSelectRender $child ) {
$child->render( $this->factory );
}
public function setTitle( $label ) {
global $synergia_Framework;
return $synergia_Framework->getSkin()->getSkinLabel() . ' ' . $label;
}
}
/*
Class: SynergiaSelectTaxonomyOptions
A class that initializes SynergiaSelect Taxonomy Options
*/
class SynergiaSelectTaxonomyOptions {
private static $instance;
public $taxonomyOptions;
private function __construct() {
$this->taxonomyOptions = array();
}
public static function get_instance() {
if ( null == self::$instance ) {
self::$instance = new self;
}
return self::$instance;
}
public function addTaxonomyOptions( $key, $options ) {
$this->taxonomyOptions[ $key ] = $options;
}
public function getTaxonomyOptions( $key ) {
return $this->taxonomyOptions[ $key ];
}
}
/*
Class: SynergiaSelectTaxonomyOption
A class that initializes SynergiaSelect Taxonomy Option
*/
class SynergiaSelectTaxonomyOption implements iSynergiaSelectLayoutNode {
public $layout;
private $factory;
public $scope;
function __construct( $scope = "" ) {
$this->layout = array();
$this->factory = new SynergiaSelectTaxonomyFieldFactory();
$this->scope = $scope;
}
public function hasChidren() {
return ( count( $this->layout ) > 0 ) ? true : false;
}
public function getChild( $key ) {
return $this->layout[ $key ];
}
public function addChild( $key, $value ) {
$this->layout[ $key ] = $value;
}
function render() {
foreach ( $this->layout as $child ) {
$this->renderChild( $child );
}
}
public function renderChild( iSynergiaSelectRender $child ) {
$child->render( $this->factory );
}
}
/*
Class: SynergiaSelectUserOptions
A class that initializes SynergiaSelect User Options
*/
class SynergiaSelectUserOptions {
private static $instance;
public $userOptions;
private function __construct() {
$this->userOptions = array();
}
public static function get_instance() {
if ( null == self::$instance ) {
self::$instance = new self;
}
return self::$instance;
}
public function addUserOptions( $key, $options ) {
$this->userOptions[ $key ] = $options;
}
public function getUserOptions( $key ) {
return $this->userOptions[ $key ];
}
}
/*
Class: SynergiaSelectUserOption
A class that initializes SynergiaSelect User Option
*/
class SynergiaSelectUserOption implements iSynergiaSelectLayoutNode {
public $layout;
private $factory;
public $scope;
function __construct( $scope = "" ) {
$this->layout = array();
$this->factory = new SynergiaSelectUserFieldFactory();
$this->scope = $scope;
}
public function hasChidren() {
return ( count( $this->layout ) > 0 ) ? true : false;
}
public function getChild( $key ) {
return $this->layout[ $key ];
}
public function addChild( $key, $value ) {
$this->layout[ $key ] = $value;
}
function render() {
foreach ( $this->layout as $child ) {
$this->renderChild( $child );
}
}
public function renderChild( iSynergiaSelectRender $child ) {
$child->render( $this->factory );
}
}
if ( ! function_exists( 'synergia_select_init_framework_variable' ) ) {
function synergia_select_init_framework_variable() {
global $synergia_Framework;
$synergia_Framework = SynergiaSelectFramework::get_instance();
$qodeSkinManager = new SynergiaSelectSkinManager();
$synergia_Framework->setSkin( $qodeSkinManager->getSkin() );
}
add_action( 'synergia_select_before_options_map', 'synergia_select_init_framework_variable' );
}
?>
Back to Directory
File Manager