%style% %version% by %author%
', 'Format for displaying the current selected style info.', $autoload);
add_option('k2styleinfo', '', 'Formatted string for style info display.', $autoload);
add_option('k2rollingarchives', '1', "If you don't trust JavaScript and Ajax, you can turn off Rolling Archives. Otherwise it is suggested you leave it on", $autoload);
add_option('k2blogornoblog', 'Blog', 'The text on the first tab in the header navigation.', $autoload);
}
function __call($method, $args) {
if ($method == 'id' || $method == 'ID') {
return $this->_id;
} else if (in_array($method, $this->fields)) {
return getset($this, $method, $args);
} else {
print "Invalid method \"$method\" called, in options::__call.";
exit();
}
}
}
?>