View file mc-master/modules/index_page/helpers/_installer.php

File size: 747B
<?php
/**
	 * MobileCMS
	 *
	 * Open source content management system for mobile sites
	 *
	 * @author MobileCMS Team <[email protected]>
	 * @copyright Copyright (c) 2011, MobileCMS Team
	 * @link http://mobilecms.ru Official site
	 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
	 */

defined('IN_SYSTEM') or die('<b>403<br />Запрет доступа!</b>');

//---------------------------------------------

/**
 * Хелпер установки модуля
 */
class _installer {
	/**
	 * Установка модуля
	 */
	public static function install(&$db) {
	}

	/**
	 * Деинсталляция модуля
	 */
	public static function uninstall(&$db) {
	}
}
?>