當前位置: 首頁>>代碼示例>>PHP>>正文


PHP C_Base_Module類代碼示例

本文整理匯總了PHP中C_Base_Module的典型用法代碼示例。如果您正苦於以下問題:PHP C_Base_Module類的具體用法?PHP C_Base_Module怎麽用?PHP C_Base_Module使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了C_Base_Module類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: initialize

 function initialize()
 {
     parent::initialize();
     if (is_admin()) {
         add_action('admin_init', array(&$this, 'add_all_lightbox_forms'));
     }
 }
開發者ID:JeffreyBue,項目名稱:jb,代碼行數:7,代碼來源:module.lightbox.php

示例2: define

 function define($context = FALSE)
 {
     parent::define('photocrati-frame_communication', 'Frame/iFrame Inter-Communication', 'Provides a means for HTML frames to share server-side events with each other', '0.4', 'http://www.nextgen-gallery.com', 'Photocrati Media', 'http://www.photocrati.com', $context);
     include_once 'class.frame_communication_option_handler.php';
     C_NextGen_Settings::get_instance()->add_option_handler('C_Frame_Communication_Option_Handler', array('frame_event_cookie_name'));
     C_NextGen_Global_Settings::get_instance()->add_option_handler('C_Frame_Communication_Option_Handler', array('frame_event_cookie_name'));
 }
開發者ID:ayoayco,項目名稱:upbeat,代碼行數:7,代碼來源:module.frame_communication.php

示例3: define

 function define()
 {
     parent::define('photocrati-third_party_compat', 'Third Party Compatibility', "Adds Third party compatibility hacks, adjustments, and modifications", '0.4', 'http://www.nextgen-gallery.com', 'Photocrati Media', 'http://www.photocrati.com');
     // the following constants were renamed for 2.0.41; keep them declared for compatibility sake until
     // other parties can update themselves.
     $changed_constants = array('NEXTGEN_ADD_GALLERY_SLUG' => 'NGG_ADD_GALLERY_SLUG', 'NEXTGEN_BASIC_SINGLEPIC_MODULE_NAME' => 'NGG_BASIC_SINGLEPIC', 'NEXTGEN_BASIC_TAG_CLOUD_MODULE_NAME' => 'NGG_BASIC_TAGCLOUD', 'NEXTGEN_DISPLAY_PRIORITY_BASE' => 'NGG_DISPLAY_PRIORITY_BASE', 'NEXTGEN_DISPLAY_PRIORITY_STEP' => 'NGG_DISPLAY_PRIORITY_STEP', 'NEXTGEN_DISPLAY_SETTINGS_SLUG' => 'NGG_DISPLAY_SETTINGS_SLUG', 'NEXTGEN_FS_ACCESS_SLUG' => 'NGG_FS_ACCESS_SLUG', 'NEXTGEN_GALLERY_ATTACH_TO_POST_SLUG' => 'NGG_ATTACH_TO_POST_SLUG', 'NEXTGEN_GALLERY_BASIC_SLIDESHOW' => 'NGG_BASIC_SLIDESHOW', 'NEXTGEN_GALLERY_BASIC_THUMBNAILS' => 'NGG_BASIC_THUMBNAILS', 'NEXTGEN_GALLERY_CHANGE_OPTIONS_CAP' => 'NGG_CHANGE_OPTIONS_CAP', 'NEXTGEN_GALLERY_I18N_DOMAIN' => 'NGG_I18N_DOMAIN', 'NEXTGEN_GALLERY_IMPORT_ROOT' => 'NGG_IMPORT_ROOT', 'NEXTGEN_GALLERY_MODULE_DIR' => 'NGG_MODULE_DIR', 'NEXTGEN_GALLERY_MODULE_URL' => 'NGG_MODULE_URL', 'NEXTGEN_GALLERY_NEXTGEN_BASIC_COMPACT_ALBUM' => 'NGG_BASIC_COMPACT_ALBUM', 'NEXTGEN_GALLERY_NEXTGEN_BASIC_EXTENDED_ALBUM' => 'NGG_BASIC_EXTENDED_ALBUM', 'NEXTGEN_GALLERY_NEXTGEN_BASIC_IMAGEBROWSER' => 'NGG_BASIC_IMAGEBROWSER', 'NEXTGEN_GALLERY_NGGLEGACY_MOD_DIR' => 'NGG_LEGACY_MOD_DIR', 'NEXTGEN_GALLERY_NGGLEGACY_MOD_URL' => 'NGG_LEGACY_MOD_URL', 'NEXTGEN_GALLERY_PLUGIN' => 'NGG_PLUGIN', 'NEXTGEN_GALLERY_PLUGIN_BASENAME' => 'NGG_PLUGIN_BASENAME', 'NEXTGEN_GALLERY_PLUGIN_DIR' => 'NGG_PLUGIN_DIR', 'NEXTGEN_GALLERY_PLUGIN_STARTED_AT' => 'NGG_PLUGIN_STARTED_AT', 'NEXTGEN_GALLERY_PLUGIN_URL' => 'NGG_PLUGIN_URL', 'NEXTGEN_GALLERY_PLUGIN_VERSION' => 'NGG_PLUGIN_VERSION', 'NEXTGEN_GALLERY_PRODUCT_DIR' => 'NGG_PRODUCT_DIR', 'NEXTGEN_GALLERY_PRODUCT_URL' => 'NGG_PRODUCT_URL', 'NEXTGEN_GALLERY_PROTECT_IMAGE_MOD_STATIC_URL' => 'NGG_PROTUCT_IMAGE_MOD_STATIC_URL', 'NEXTGEN_GALLERY_PROTECT_IMAGE_MOD_URL' => 'NGG_PROTECT_IMAGE_MOD_URL', 'NEXTGEN_GALLERY_TESTS_DIR' => 'NGG_TESTS_DIR', 'NEXTGEN_LIGHTBOX_ADVANCED_OPTIONS_SLUG' => 'NGG_LIGHTBOX_ADVANCED_OPTIONS_SLUG', 'NEXTGEN_LIGHTBOX_OPTIONS_SLUG' => 'NGG_LIGHTBOX_OPTIONS_SLUG', 'NEXTGEN_OTHER_OPTIONS_SLUG' => 'NGG_OTHER_OPTIONS_SLUG');
     foreach ($changed_constants as $old => $new) {
         if (defined($new) && !defined($old)) {
             define($old, constant($new));
         }
     }
     // Resolve problems with zlib compression: https://core.trac.wordpress.org/ticket/18525
     if (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION == 4) {
         @ini_set('zlib.output_compression', 'Off');
     }
     // Detect 'Adminer' and whether the user is viewing its loader.php
     if (class_exists('AdminerForWP') && function_exists('adminer_object')) {
         if (!defined('NGG_DISABLE_RESOURCE_MANAGER')) {
             define('NGG_DISABLE_RESOURCE_MANAGER', TRUE);
         }
     }
     // Genesis Tabs creates a new query / do_shortcode loop which requires these be set
     if (class_exists('Genesis_Tabs')) {
         if (!defined('NGG_DISABLE_FILTER_THE_CONTENT')) {
             define('NGG_DISABLE_FILTER_THE_CONTENT', TRUE);
         }
         if (!defined('NGG_DISABLE_RESOURCE_MANAGER')) {
             define('NGG_DISABLE_RESOURCE_MANAGER', TRUE);
         }
     }
 }
開發者ID:simeont9,項目名稱:stoneopen,代碼行數:31,代碼來源:module.third_party_compat.php

示例4: define

 function define()
 {
     parent::define('photocrati-security', 'Security', 'Provides utilities to check for credentials and security', '0.2', 'https://www.imagely.com/wordpress-gallery-plugin/nextgen-gallery/', 'Photocrati Media', 'https://www.imagely.com');
     if (isset($GLOBALS['_COOKIE_NG_COPY'])) {
         $_COOKIE = $GLOBALS['_COOKIE_NG_COPY'];
     }
 }
開發者ID:kixortillan,項目名稱:dfosashworks,代碼行數:7,代碼來源:module.security.php

示例5: initialize

 function initialize()
 {
     parent::initialize();
     if (is_admin()) {
         $forms = C_Form_Manager::get_instance();
         $forms->add_form(NGG_DISPLAY_SETTINGS_SLUG, NGG_BASIC_SINGLEPIC);
     }
 }
開發者ID:albinmartinsson91,項目名稱:ux_blog,代碼行數:8,代碼來源:module.nextgen_basic_singlepic.php

示例6: define

 function define()
 {
     parent::define('photocrati-ajax', 'AJAX', 'Provides AJAX functionality', '0.4', 'http://www.photocrati.com', 'Photocrati Media', 'http://www.photocrati.com');
     include_once 'class.ajax_option_handler.php';
     C_NextGen_Settings::add_option_handler('C_Ajax_Option_Handler', array('ajax_slug', 'ajax_url', 'ajax_js_url'));
     include_once 'class.ajax_installer.php';
     C_Photocrati_Installer::add_handler($this->module_id, 'C_Ajax_Installer');
 }
開發者ID:hiaedenis,項目名稱:nextgen-gallery,代碼行數:8,代碼來源:module.ajax.php

示例7: define

 function define()
 {
     parent::define('photocrati-ajax', 'AJAX', 'Provides AJAX functionality', '0.8', 'http://www.photocrati.com', 'Photocrati Media', 'http://www.photocrati.com');
     C_NextGen_Settings::get_instance()->add_option_handler('C_Ajax_Option_Handler', array('ajax_slug', 'ajax_url', 'ajax_js_url'));
     if (is_multisite()) {
         C_NextGen_Global_Settings::get_instance()->add_option_handler('C_Ajax_Option_Handler', array('ajax_slug', 'ajax_url', 'ajax_js_url'));
     }
 }
開發者ID:albinmartinsson91,項目名稱:ux_blog,代碼行數:8,代碼來源:module.ajax.php

示例8: define

 /**
  * Defines the module
  */
 function define()
 {
     parent::define('photocrati-nextgen_admin', 'NextGEN Administration', 'Provides a framework for adding Administration pages', '0.5', 'http://www.nextgen-gallery.com', 'Photocrati Media', 'http://www.photocrati.com');
     include_once 'class.nextgen_admin_installer.php';
     C_Photocrati_Installer::add_handler($this->module_id, 'C_NextGen_Admin_Installer');
     include_once 'class.nextgen_admin_option_handler.php';
     C_NextGen_Settings::add_option_handler('C_NextGen_Admin_Option_Handler', array('jquery_ui_theme', 'jquery_ui_theme_version', 'jquery_ui_theme_url'));
 }
開發者ID:jeanpage,項目名稱:ca_learn,代碼行數:11,代碼來源:module.nextgen_admin.php

示例9: define

 function define()
 {
     parent::define("photocrati-mvc", "MVC Framework", "Provides an MVC architecture for the plugin to use", "0.4", "http://www.photocrati.com", "Photocrati Media", "http://www.photocrati.com");
     include_once 'class.mvc_installer.php';
     C_Photocrati_Installer::add_handler($this->module_id, 'C_Mvc_Installer');
     include_once 'class.mvc_option_handler.php';
     C_NextGen_Settings::add_option_handler('C_Mvc_Option_Handler', array('mvc_template_dir'));
 }
開發者ID:hiaedenis,項目名稱:nextgen-gallery,代碼行數:8,代碼來源:module.mvc.php

示例10: define

 /**
  * Defines the module
  * @param string|bool $context
  */
 function define($context = FALSE)
 {
     parent::define('photocrati-attach_to_post', 'Attach To Post', 'Provides the "Attach to Post" interface for displaying galleries and albums', '0.6', 'http://www.nextgen-gallery.com', 'Photocrati Media', 'http://www.photocrati.com', $context);
     include_once 'class.attach_to_post_option_handler.php';
     C_NextGen_Settings::add_option_handler('C_Attach_To_Post_Option_Handler', array('attach_to_post_url', 'gallery_preview_url', 'attach_to_post_display_tab_js_url'));
     include_once 'class.attach_to_post_installer.php';
     C_Photocrati_Installer::add_handler($this->module_id, 'C_Attach_To_Post_Installer');
 }
開發者ID:fidler2326,項目名稱:betfid,代碼行數:12,代碼來源:module.attach_to_post.php

示例11: define

 function define()
 {
     parent::define("photocrati-mvc", "MVC Framework", "Provides an MVC architecture for the plugin to use", "0.8", "https://www.imagely.com", "Photocrati Media", "https://www.imagely.com");
     C_NextGen_Settings::get_instance()->add_option_handler('C_Mvc_Option_Handler', array('mvc_template_dir', 'mvc_template_dirname', 'mvc_static_dir', 'mvc_static_dirname'));
     if (is_multisite()) {
         C_NextGen_Global_Settings::get_instance()->add_option_handler('C_Mvc_Option_Handler', array('mvc_template_dir', 'mvc_template_dirname', 'mvc_static_dir', 'mvc_static_dirname'));
     }
 }
開發者ID:uwmadisoncals,項目名稱:Cluster-Plugins,代碼行數:8,代碼來源:module.mvc.php

示例12: define

 /**
  * Defines the module
  */
 function define()
 {
     parent::define('photocrati-nextgen_admin', 'NextGEN Administration', 'Provides a framework for adding Administration pages', '0.9', 'http://www.nextgen-gallery.com', 'Photocrati Media', 'http://www.photocrati.com');
     C_Photocrati_Installer::add_handler($this->module_id, 'C_NextGen_Admin_Installer');
     C_NextGen_Settings::get_instance()->add_option_handler('C_NextGen_Admin_Option_Handler', array('jquery_ui_theme', 'jquery_ui_theme_version', 'jquery_ui_theme_url'));
     if (is_multisite()) {
         C_NextGen_Global_Settings::get_instance()->add_option_handler('C_NextGen_Admin_Option_Handler', array('jquery_ui_theme', 'jquery_ui_theme_version', 'jquery_ui_theme_url'));
     }
 }
開發者ID:interfisch,項目名稱:lm,代碼行數:12,代碼來源:module.nextgen_admin.php

示例13: define

 /**
  * Defines the module
  * @param string|bool $context
  */
 function define($context = FALSE)
 {
     parent::define('photocrati-attach_to_post', 'Attach To Post', 'Provides the "Attach to Post" interface for displaying galleries and albums', '0.11', 'https://www.imagely.com/wordpress-gallery-plugin/nextgen-gallery/', 'Photocrati Media', 'https://www.imagely.com', $context);
     C_NextGen_Settings::get_instance()->add_option_handler('C_Attach_To_Post_Option_Handler', array('attach_to_post_url', 'gallery_preview_url', 'attach_to_post_display_tab_js_url'));
     if (is_multisite()) {
         C_NextGen_Global_Settings::get_instance()->add_option_handler('C_Attach_To_Post_Option_Handler', array('attach_to_post_url', 'gallery_preview_url', 'attach_to_post_display_tab_js_url'));
     }
     C_Photocrati_Installer::add_handler($this->module_id, 'C_Attach_To_Post_Installer');
 }
開發者ID:sallf,項目名稱:coopernature,代碼行數:13,代碼來源:module.attach_to_post.php

示例14: initialize

 function initialize()
 {
     parent::initialize();
     if (is_admin()) {
         $forms = C_Form_Manager::get_instance();
         $forms->add_form(NGG_DISPLAY_SETTINGS_SLUG, NGG_BASIC_COMPACT_ALBUM);
         $forms->add_form(NGG_DISPLAY_SETTINGS_SLUG, NGG_BASIC_EXTENDED_ALBUM);
     }
 }
開發者ID:albinmartinsson91,項目名稱:ux_blog,代碼行數:9,代碼來源:module.nextgen_basic_album.php

示例15: initialize

 function initialize()
 {
     parent::initialize();
     if (!is_admin()) {
         $triggers = C_Displayed_Gallery_Trigger_Manager::get_instance();
         $triggers->add(NGG_PRO_LIGHTBOX_TRIGGER, 'C_NextGen_Pro_Lightbox_Trigger');
         $triggers->add(NGG_PRO_LIGHTBOX_COMMENT_TRIGGER, 'C_NextGen_Pro_Lightbox_Trigger');
     }
 }
開發者ID:CodeNoEvil,項目名稱:mbp_web_infrastructure,代碼行數:9,代碼來源:module.nextgen_pro_lightbox.php


注:本文中的C_Base_Module類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。