title = __("Custom Header Code","dagsopt");
$this->pluginname = $ns->pluginname;
$this->file = $ns->file;
$this->ns = $ns;
}
function start() {
add_action('wp_head',array(&$this,'header'),1);
}
function header() {
if(get_option($this->pluginname."_custom_header") == "on"){
$data = get_option($this->pluginname."_custom_header_data");
echo( stripcslashes($data) );
};
}
function help(){
?>
dagsopt['plug_custom_header'] = $plug_custom_header;
}