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


PHP Modules::count方法代碼示例

本文整理匯總了PHP中Modules::count方法的典型用法代碼示例。如果您正苦於以下問題:PHP Modules::count方法的具體用法?PHP Modules::count怎麽用?PHP Modules::count使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Modules的用法示例。


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

示例1: register_module

 /**
  * Registers a module with the modules database table
  * @param string $module
  */
 public static function register_module($module)
 {
     $mod = new Modules();
     $mod->getModuleByName($module);
     if ($mod->count() == 0) {
         // load the installer file
         $file = "modules/{$module}/{$module}.install.php";
         if (file_exists('sites/' . FabriqStack::site() . "/{$file}")) {
             require_once 'sites/' . FabriqStack::site() . "/{$file}";
         } else {
             if (file_exists($file)) {
                 require_once $file;
             } else {
                 throw new Exception("Module {$module} could not be found");
             }
         }
         eval('$installer = new ' . $module . '_install();');
         $info = $installer->info();
         $mod->module = $module;
         $mod->enabled = 0;
         $mod->installed = 0;
         $mod->hasconfigs = 0;
         $mod->description = $info['description'];
         $mod->versioninstalled = $info['version'];
         if (isset($info['dependsOn'])) {
             $mod->dependson = implode(',', $info['dependsOn']);
         }
         $mod->id = $mod->create();
         // register configs if available
         if (isset($info['configs'])) {
             foreach ($info['configs'] as $con) {
                 $config = new ModuleConfigs();
                 $config->module = $mod->id;
                 $config->var = $con;
                 if (isset($info['configDefaults']) && array_key_exists($con, $info['configDefaults'])) {
                     $config->val = $info['configDefaults'][$con];
                 } else {
                     $config->val = '';
                 }
                 $config->create();
             }
             $mod->hasconfigs = 1;
             $mod->update();
         }
     }
     return $mod->id;
 }
開發者ID:ralivue,項目名稱:fabriqframework,代碼行數:51,代碼來源:FabriqModules.core.php

示例2: module_loaded

/**
 * Returns true if module $name is installed and loaded
 *
 * @param string $name
 * @return boolean
 */
function module_loaded($name)
{
    static $cache = array();
    if (!isset($cache[$name])) {
        $cache[$name] = (bool) Modules::count(array('name = ?', $name));
    }
    // if
    return $cache[$name];
}
開發者ID:NaszvadiG,項目名稱:activecollab_loc,代碼行數:15,代碼來源:functions.php

示例3: paginate

 /**
  * Return paginated set of modules
  *
  * @param array $arguments
  * @param itneger $page
  * @param integer $per_page
  * @return array
  */
 function paginate($arguments = null, $page = 1, $per_page = 10)
 {
     if (!is_array($arguments)) {
         $arguments = array();
     }
     // if
     $arguments['limit'] = $per_page;
     $arguments['offset'] = ($page - 1) * $per_page;
     $modules = Modules::findBySQL(DataManager::prepareSelectFromArguments($arguments, TABLE_PREFIX . 'modules'), null, array_var($arguments, 'one'));
     $total_modules = Modules::count(array_var($arguments, 'conditions'));
     return array($modules, new Pager($page, $total_modules, $per_page));
 }
開發者ID:NaszvadiG,項目名稱:activecollab_loc,代碼行數:20,代碼來源:Modules.class.php

示例4: isInstalled

 /**
  * Returns true if this module installed
  *
  * @param void
  * @return boolean
  */
 function isInstalled()
 {
     return (bool) Modules::count(array('name = ?', $this->name));
 }
開發者ID:NaszvadiG,項目名稱:activecollab_loc,代碼行數:10,代碼來源:Module.class.php


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