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


PHP question_engine::is_behaviour_archetypal方法代碼示例

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


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

示例1: require_capability

$systemcontext = context_system::instance();
require_capability('moodle/question:config', $systemcontext);
admin_externalpage_setup('manageqbehaviours');
$thispageurl = new moodle_url('/admin/qbehaviours.php');
$behaviours = get_plugin_list('qbehaviour');
$pluginmanager = plugin_manager::instance();
// Get some data we will need - question counts and which types are needed.
$counts = $DB->get_records_sql_menu("\n        SELECT behaviour, COUNT(1)\n        FROM {question_attempts} GROUP BY behaviour");
$needed = array();
$archetypal = array();
foreach ($behaviours as $behaviour => $notused) {
    if (!array_key_exists($behaviour, $counts)) {
        $counts[$behaviour] = 0;
    }
    $needed[$behaviour] = $counts[$behaviour] > 0 || $pluginmanager->other_plugins_that_require('qbehaviour_' . $behaviour);
    $archetypal[$behaviour] = question_engine::is_behaviour_archetypal($behaviour);
}
foreach ($counts as $behaviour => $count) {
    if (!array_key_exists($behaviour, $behaviours)) {
        $counts['missing'] += $count;
    }
}
$needed['missing'] = true;
// Work of the correct sort order.
$config = get_config('question');
$sortedbehaviours = array();
foreach ($behaviours as $behaviour => $notused) {
    $sortedbehaviours[$behaviour] = question_engine::get_behaviour_name($behaviour);
}
if (!empty($config->behavioursortorder)) {
    $sortedbehaviours = question_engine::sort_behaviours($sortedbehaviours, $config->behavioursortorder, '');
開發者ID:Jtgadbois,項目名稱:Pedadida,代碼行數:31,代碼來源:qbehaviours.php

示例2: action

 function action($state)
 {
     $behaviours = get_plugin_list('qbehaviour');
     $pm = plugin_manager::instance();
     $sql = "\n            SELECT\n                behaviour,\n                COUNT(1)\n            FROM \n                {question_attempts}\n            GROUP BY\n                behaviour\n        ";
     $counts = $DB->get_records_sql_menu($sql);
     $needed = array();
     $archetypal = array();
     foreach ($behaviours as $behaviour => $foobar) {
         if (!array_key_exists($behaviour, $counts)) {
             $counts[$behaviour] = 0;
         }
         $needed[$behaviour] = $counts[$behaviour] > 0 || $pm->other_plugins_that_require('qbehaviour_' . $behaviour);
         $archetypal[$behaviour] = question_engine::is_behaviour_archetypal($behaviour);
     }
     $config = get_config('question');
     if (!empty($config->disabledbehaviours)) {
         $disabledbehaviours = explode(',', $config->disabledbehaviours);
     } else {
         $disabledbehaviours = array();
     }
     if (!isset($behaviours[$this->plugin])) {
         return get_string('unknownbehaviour', 'question', $this->plugin);
     }
     switch ($action) {
         case 'enable':
             if (!$archetypal[$this->plugin]) {
                 return get_string('cannotenablebehaviour', 'question', $this->plugin);
             }
             if (($key = array_search($this->plugin, $disabledbehaviours)) !== false) {
                 unset($disabledbehaviours[$key]);
                 set_config('disabledbehaviours', implode(',', $disabledbehaviours), 'question');
             }
             break;
         case 'disable':
             if (array_search($disable, $disabledbehaviours) === false) {
                 $disabledbehaviours[] = $disable;
                 set_config('disabledbehaviours', implode(',', $disabledbehaviours), 'question');
             }
             break;
     }
     return 0;
 }
開發者ID:OctaveBabel,項目名稱:moodle-itop,代碼行數:43,代碼來源:pluginscontrolslib.php


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