PATH:
home
/
hunkmedicalstaff
/
public_html
/
wp-content
/
plugins
/
ajax-search-lite
/
includes
/
classes
/
core
<?php if (!defined('ABSPATH')) die('-1'); if ( !class_exists("WD_ASL_Shortcodes") ) { /** * Class WD_ASL_Shortcodes * * Registers the plugin Shortcodes, with the proper handler classes. * Handling is passed to the handle() method of the specified class. * Handlers defined in /classes/shortcodes/class-asl-{handler}.php * * @class WD_ASL_Shortcodes * @version 1.0 * @package AjaxSearchLite/Classes/Core * @category Class * @author Ernest Marcinko */ class WD_ASL_Shortcodes { /** * Array of internal known shortcodes * * @var array */ private static $shortcodes = array( "wpdreams_ajaxsearchlite" => "Search", "wd_asl" => "Search" ); /** * Array of already registered shortcodes * * @var array */ private static $registered = array(); /** * Registers all the handlers from the $actions variable */ public static function registerAll() { foreach (self::$shortcodes as $shortcode => $handler) self::register($shortcode, $handler); } /** * Get all the queued handlers * * @return array */ public static function getAll( ) { return array_keys(self::$shortcodes); } /** * Get all the already registered handlers * * @return array */ public static function getRegistered() { return self::$registered; } /** * Registers a filter with the handler class name. * * @param $shortcode * @param $handler string|array * @return bool */ public static function register( $shortcode, $handler ) { if ( is_array($handler) ) { $class = "WD_ASL_" . $handler[0] . "_Shortcode"; $handle = $handler[1]; } else { $class = "WD_ASL_" . $handler . "_Shortcode"; $handle = "handle"; } if ( !class_exists($class) ) return false; add_shortcode($shortcode, array(call_user_func(array($class, 'getInstance')), $handle)); self::$registered[] = $shortcode; return true; } /** * Deregisters a shortcode * * @param $shortcode string * @return bool */ public static function deregister( $shortcode ) { // Check if it is already registered if ( isset(self::$registered[$shortcode]) ) remove_shortcode( $shortcode ); else if ( isset(self::$shortcodes[$shortcode]) ) unset(self::$shortcodes[$shortcode]); return true; } } }
[-] class-asl-dbman.php
[edit]
[-] class-asl-ajax.php
[edit]
[-] class-asl-shortcodes.php
[edit]
[-] class-asl-scripts.php
[edit]
[-] class-asl-filters.php
[edit]
[+]
..
[-] class-asl-instances.php
[edit]
[-] class-asl-actions.php
[edit]
[-] class-asl-styles.php
[edit]
[-] core.inc.php
[edit]
[-] class-asl-init.php
[edit]
[-] class-asl-globals.php
[edit]
[-] class-asl-manager.php
[edit]
[-] class-asl-menu.php
[edit]