本文整理匯總了PHP中admin_setting_configselect::write_setting方法的典型用法代碼示例。如果您正苦於以下問題:PHP admin_setting_configselect::write_setting方法的具體用法?PHP admin_setting_configselect::write_setting怎麽用?PHP admin_setting_configselect::write_setting使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類admin_setting_configselect
的用法示例。
在下文中一共展示了admin_setting_configselect::write_setting方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: write_setting
/**
* Save a setting
*
* @param string $data
* @return string empty of error string
*/
public function write_setting($data)
{
$validated = $this->validate($data);
if ($validated !== true) {
return $validated;
}
return parent::write_setting($data);
}
示例2: write_setting
/**
* Saves the new settings passed in $data
*
* @todo Add vartype handling to ensure $data is an array
* @param array $data
* @return mixed string or Array
*/
public function write_setting($data)
{
$error = parent::write_setting($data['value']);
if (!$error) {
$value = empty($data['adv']) ? 0 : 1;
$this->config_write($this->name . '_adv', $value);
}
return $error;
}
示例3: write_setting
/**
* Updates the database and save the setting
*
* @param string data
* @return string empty or error message
*/
public function write_setting($data)
{
global $DB, $CFG;
if ($data == 0) {
$blogblocks = $DB->get_records_select('block', "name LIKE 'blog_%' AND visible = 1");
foreach ($blogblocks as $block) {
$DB->set_field('block', 'visible', 0, array('id' => $block->id));
}
} else {
// reenable all blocks only when switching from disabled blogs
if (isset($CFG->bloglevel) and $CFG->bloglevel == 0) {
$blogblocks = $DB->get_records_select('block', "name LIKE 'blog_%' AND visible = 0");
foreach ($blogblocks as $block) {
$DB->set_field('block', 'visible', 1, array('id' => $block->id));
}
}
}
return parent::write_setting($data);
}
示例4:
/**
* Saves the new setting.
*
* @param mixed $data
* @return string empty string or error message
*/
function write_setting($data)
{
global $CFG;
$previous = $this->get_setting();
$result = parent::write_setting($data);
// If saved and the value has changed.
if (empty($result) && $previous != $data) {
require_once $CFG->libdir . '/gradelib.php';
grade_force_site_regrading();
}
return $result;
}
示例5: write_setting
/**
* Save the selected setting
*
* @param string $data The selected site
* @return string empty string or error message
*/
public function write_setting($data)
{
global $CFG;
set_marsupial_state($data);
return parent::write_setting($data);
}
示例6: write_setting
public function write_setting($data)
{
$error = parent::write_setting($data['value']);
if (!$error) {
if (empty($data['fix'])) {
$ok = $this->config_write('fix_' . $this->name, 0);
} else {
$ok = $this->config_write('fix_' . $this->name, 1);
}
if (!$ok) {
$error = get_string('errorsetting', 'admin');
}
}
return $error;
}