当前位置: 首页>>代码示例>>PHP>>正文


PHP TGMPA_Utils类代码示例

本文整理汇总了PHP中TGMPA_Utils的典型用法代码示例。如果您正苦于以下问题:PHP TGMPA_Utils类的具体用法?PHP TGMPA_Utils怎么用?PHP TGMPA_Utils使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了TGMPA_Utils类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: register

 /**
  * Add individual plugin to our collection of plugins.
  *
  * If the required keys are not set or the plugin has already
  * been registered, the plugin is not added.
  *
  * @since 2.0.0
  *
  * @param array|null $plugin Array of plugin arguments or null if invalid argument.
  * @return null Return early if incorrect argument.
  */
 public function register($plugin)
 {
     if (empty($plugin['slug']) || empty($plugin['name'])) {
         return;
     }
     if (empty($plugin['slug']) || !is_string($plugin['slug']) || isset($this->plugins[$plugin['slug']])) {
         return;
     }
     $defaults = array('name' => '', 'slug' => '', 'source' => 'repo', 'required' => false, 'version' => '', 'force_activation' => false, 'force_deactivation' => false, 'external_url' => '', 'is_callable' => '');
     // Prepare the received data.
     $plugin = wp_parse_args($plugin, $defaults);
     // Standardize the received slug.
     $plugin['slug'] = $this->sanitize_key($plugin['slug']);
     // Forgive users for using string versions of booleans or floats for version number.
     $plugin['version'] = (string) $plugin['version'];
     $plugin['source'] = empty($plugin['source']) ? 'repo' : $plugin['source'];
     $plugin['required'] = TGMPA_Utils::validate_bool($plugin['required']);
     $plugin['force_activation'] = TGMPA_Utils::validate_bool($plugin['force_activation']);
     $plugin['force_deactivation'] = TGMPA_Utils::validate_bool($plugin['force_deactivation']);
     // Enrich the received data.
     $plugin['file_path'] = $this->_get_plugin_basename_from_slug($plugin['slug']);
     $plugin['source_type'] = $this->get_plugin_source_type($plugin['source']);
     // Set the class properties.
     $this->plugins[$plugin['slug']] = $plugin;
     $this->sort_order[$plugin['slug']] = $plugin['name'];
     // Should we add the force activation hook ?
     if (true === $plugin['force_activation']) {
         $this->has_forced_activation = true;
     }
     // Should we add the force deactivation hook ?
     if (true === $plugin['force_deactivation']) {
         $this->has_forced_deactivation = true;
     }
 }
开发者ID:Stylize,项目名称:Fuel,代码行数:45,代码来源:TGM_Plugin_Activation.php

示例2: validate_bool

 /**
  * Helper function: Validate a value as boolean
  *
  * @since 2.5.0
  *
  * @static
  *
  * @param mixed $value Arbitrary value.
  * @return bool
  */
 public static function validate_bool($value)
 {
     if (!isset(self::$has_filters)) {
         self::$has_filters = extension_loaded('filter');
     }
     if (self::$has_filters) {
         return filter_var($value, FILTER_VALIDATE_BOOLEAN);
     } else {
         return self::emulate_filter_bool($value);
     }
 }
开发者ID:GvarimAZA,项目名称:website,代码行数:21,代码来源:class-tgm-plugin-activation.php


注:本文中的TGMPA_Utils类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。