Your IP : 172.28.240.42


Current Path : /var/www/html/clients/rebirth.e-nk.ru/live/plugins/profiler/
Upload File :
Current File : /var/www/html/clients/rebirth.e-nk.ru/live/plugins/profiler/PluginProfiler.class.php

<?php
/*-------------------------------------------------------
*
*   LiveStreet Engine Social Networking
*   Copyright © 2008 Mzhelskiy Maxim
*
*--------------------------------------------------------
*
*   Official site: www.livestreet.ru
*   Contact e-mail: rus.engine@gmail.com
*
*   GNU General Public License, version 2:
*   http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
---------------------------------------------------------
*/

/**
 * Запрещаем напрямую через браузер обращение к этому файлу.
 */
if (!class_exists('Plugin')) {
	die('Hacking attemp!');
}

class PluginProfiler extends Plugin {
	/**
	 * Активация плагина Профайлер.
	 * Создание таблицы в базе данных при ее отсутствии.
	 */
	public function Activate() {
		$this->ExportSQL(dirname(__FILE__).'/sql.sql');
		return true;
	}
	
	/**
	 * Инициализация плагина Profiler
	 */
	public function Init() {
	}
}
?>