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


PHP admin_setting::get_id方法代码示例

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


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

示例1: output_setting_flag

 /**
  * Output the checkbox for this setting flag. Should only be called if the flag is enabled.
  *
  * @param admin_setting $setting - The admin setting for this flag
  * @return string - The html for the checkbox.
  */
 public function output_setting_flag(admin_setting $setting)
 {
     $value = $setting->get_setting_flag_value($this);
     $output = ' <input type="checkbox" class="form-checkbox" ' . ' id="' . $setting->get_id() . '_' . $this->get_shortname() . '" ' . ' name="' . $setting->get_full_name() . '_' . $this->get_shortname() . '" ' . ' value="1" ' . ($value ? 'checked="checked"' : '') . ' />' . ' <label for="' . $setting->get_id() . '_' . $this->get_shortname() . '">' . $this->get_displayname() . ' </label> ';
     return $output;
 }
开发者ID:Alexbado,项目名称:moodle2,代码行数:12,代码来源:adminlib.php

示例2: output_setting_flag

    /**
     * Output the checkbox for this setting flag. Should only be called if the flag is enabled.
     *
     * @param admin_setting $setting - The admin setting for this flag
     * @return string - The html for the checkbox.
     */
    public function output_setting_flag(admin_setting $setting) {
        global $OUTPUT;

        $value = $setting->get_setting_flag_value($this);

        $context = new stdClass();
        $context->id = $setting->get_id() . '_' . $this->get_shortname();
        $context->name = $setting->get_full_name() .  '_' . $this->get_shortname();
        $context->value = 1;
        $context->checked = $value ? true : false;
        $context->label = $this->get_displayname();

        return $OUTPUT->render_from_template('core_admin/setting_flag', $context);
    }
开发者ID:EsdrasCaleb,项目名称:moodle,代码行数:20,代码来源:adminlib.php


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