Файл: InstantSocial/uploud/components/present/install.php
Строк: 68
<?php
/*********************************************************************************************/
// //
// InstantPresent v1.0 (c) 2010 //
// http://www.instantcms.ru/, info@instantcms.ru //
// //
// written by Somebody & Александр, 2010 //
// //
/*********************************************************************************************/
// ========================================================================== //
function info_component_present(){
//Описание компонента
$_component['title'] = 'InstantPresent';
$_component['description'] = 'Компонент подарки';
$_component['link'] = 'present';
$_component['author'] = 'Somebody & Александр';
$_component['internal'] = '0';
$_component['version'] = '1.0';
return $_component;
}
// ========================================================================== //
function install_component_present(){
$inCore = cmsCore::getInstance(); //подключаем ядро
$inDB = cmsDatabase::getInstance(); //подключаем базу данных
$inConf = cmsConfig::getInstance();
include($_SERVER['DOCUMENT_ROOT'].'/includes/dbimport.inc.php');
dbRunSQL($_SERVER['DOCUMENT_ROOT'].'/components/present/install.sql', $inConf->db_prefix);
return true;
}
// ========================================================================== //
?>