Вход Регистрация
Файл: mc-2.7.0/modules/news/helpers/news_installer.php
Строк: 29
<?php

/**
 * MobileCMS
 *
 * Open source content management system for mobile sites
 *
 * @author MobileCMS Team <support@mobilecms.pro>
 * @copyright Copyright (c) 2011-2019, MobileCMS Team
 * @link https://mobilecms.pro Official site
 * @license MIT license
 */
defined('IN_SYSTEM') or die('<b>403<br />Запрет доступа!</b>');

/**
 * Хелпер установки модуля
 */
class news_installer {

    
/**
     * Установка модуля
     */
    
public static function install($db) {
        
$db->query("CREATE TABLE #__news (
              `news_id` int(11) NOT NULL auto_increment,
              `subject` varchar(100) NOT NULL,
              `text` text NOT NULL,
              `time` int(11) NOT NULL,
              PRIMARY KEY  (`news_id`)
            ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ;
        "
);
    }

    
/**
     * Деинсталляция модуля
     */
    
public static function uninstall($db) {
        
$db->query("DROP TABLE #__news;");
    }

}

?>
Онлайн: 5
Реклама