Allow plugins to modify option values on the fly.

git-svn-id: http://svn.automattic.com/wordpress/trunk@2158 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
saxmatt 2005-01-27 18:39:52 +00:00
parent ba04c52c00
commit 264d9ac56f
1 changed files with 6 additions and 6 deletions

View File

@ -309,10 +309,10 @@ function get_settings($setting) {
$cache_nonexistantoptions = array();
if ('home' == $setting && '' == $cache_settings->home)
return $cache_settings->siteurl;
return apply_filters('option_' . $setting, $cache_settings->siteurl);
if ( isset($cache_settings->$setting) ) :
return $cache_settings->$setting;
return apply_filters('option_' . $setting, $cache_settings->$setting);
else :
// for these cases when we're asking for an unknown option
if ( isset($cache_nonexistantoptions[$setting]) )
@ -327,8 +327,8 @@ function get_settings($setting) {
@ $kellogs = unserialize($option);
if ($kellogs !== FALSE)
return $kellogs;
else return $option;
return apply_filters('option_' . $setting, $kellogs);
else return apply_filters('option_' . $setting, $option);
endif;
}
@ -359,9 +359,9 @@ function get_alloptions() {
@ $value = unserialize($option->option_value);
if ($value === FALSE)
$value = $option->option_value;
$all_options->{$option->option_name} = $value;
$all_options->{$option->option_name} = apply_filters('pre_option_' . $option->option_name, $value);
}
return $all_options;
return apply_filters('all_options', $all_options);
}
function update_option($option_name, $newvalue) {