funchat/modules/search/search.module.php

77 lines
1.9 KiB
PHP

<?php
class module_search extends admin_module{
function admin_panels(){
return array();
}
function get_info(){
$info["name"]="Review Search";
$info["file"]="search";
$info["author"]="BeCast";
$info["version"]="1.0.1";
$info["url"]="http://www.becast.at";
$info["depends"]='reviews';
return $info;
}
function install(){
global $config, $db;
/*$db->query("CREATE TABLE IF NOT EXISTS `" . $config["prefix"] . "article` (
`id` int(11) NOT NULL auto_increment,
`text` text NOT NULL,
`date` int(11) NOT NULL default '0',
`author` int(11) NOT NULL default '0',
`eid` int(11) NOT NULL,
`edittime` int(11) NOT NULL,
`menue` int(11) NOT NULL default '0',
`title` varchar(80) NOT NULL default '',
`url` varchar(120) NOT NULL,
`rightnavi` enum('false','true') NOT NULL,
`active` enum('true','false') NOT NULL,
PRIMARY KEY (`id`),
KEY `author` (`author`),
KEY `menue` (`menue`),
KEY `eid` (`eid`)
) ENGINE=MyISAM");
$db->query("CREATE TABLE IF NOT EXISTS `" . $config["prefix"] . "article_categorys` (
`id` int(11) NOT NULL auto_increment,
`categoryname` varchar(80) NOT NULL default '',
`picture` varchar(80) NOT NULL default '',
`active` enum('true','false') NOT NULL,
PRIMARY KEY (`id`),
KEY `active` (`active`)
) ENGINE=MyISAM");
$db->query("CREATE TABLE `" . $config["prefix"] . "article_category` (
`a_id` int(11) NOT NULL,
`c_id` int(11) NOT NULL,
KEY `a_id` (`a_id`),
KEY `c_id` (`c_id`)
) ENGINE=MyISAM");
$db->query("CREATE TABLE `" . $config["prefix"] . "article_menue` (
`id` int(11) NOT NULL auto_increment,
`sort` int(11) NOT NULL,
`name` text NOT NULL,
PRIMARY KEY (`id`),
KEY `sort` (`sort`)
) ENGINE=MyISAM");
mkdir ($_SERVER["DOCUMENT_ROOT"]."/catimages", 0777);*/
return TRUE;
}
function uninstall(){
global $config, $db;
return TRUE;
}
}
?>