sms5 추가

This commit is contained in:
chicpro
2014-03-20 14:51:51 +09:00
parent 41a3385e99
commit bcc013bdcf
80 changed files with 16733 additions and 14 deletions

15
adm/sms_admin/_common.php Normal file
View File

@ -0,0 +1,15 @@
<?php
define('G5_IS_ADMIN', true);
include_once ('../../common.php');
include_once(G5_ADMIN_PATH.'/admin.lib.php');
if (!strstr($_SERVER['PHP_SELF'], 'install.php')) {
if(!mysql_num_rows(mysql_query("show tables like '{$g5['sms5_config_table']}'")))
goto_url('install.php');
// SMS 설정값 배열변수
//$sms5 = sql_fetch("select * from ".$g5['sms5_config_table'] );
}
add_stylesheet('<link rel="stylesheet" href="'.G5_SMS5_ADMIN_URL.'/css/sms5.css">', 0);
?>