本文整理匯總了PHP中gcms::installModule方法的典型用法代碼示例。如果您正苦於以下問題:PHP gcms::installModule方法的具體用法?PHP gcms::installModule怎麽用?PHP gcms::installModule使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類gcms
的用法示例。
在下文中一共展示了gcms::installModule方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: array
<?php
// modules/edocument/admin_install.php
if (MAIN_INIT == 'installing') {
if ($ftp->mkdir(DATA_PATH . 'edocument/', 0755)) {
$content[] = '<li class=valid>โฟลเดอร์ <strong>' . DATA_FOLDER . 'edocument/</strong> สามารถใช้งานได้</li>';
} else {
$content[] = '<li class=invalid>โฟลเดอร์ <strong>' . DATA_FOLDER . 'edocument/</strong> <em>ไม่สามารถเขียนหรือสร้างได้</em> กรุณาสร้างโฟลเดอร์นี้และปรับ chmod ให้เป็น 755 ด้วยตัวเอง</li>';
}
// install module
gcms::installModule('edocument', 'edocument', 'E-Document');
$content[] = '<li class=valid>ติดตั้งโมดูล <strong>E-Document</strong> เรียบร้อย</li>';
// install sql
gcms::install(ROOT_PATH . 'modules/edocument/sql.php');
// โหลด config ใหม่
$config = array();
if (is_file(CONFIG)) {
include CONFIG;
}
// โหลด config ของโมดูล
include ROOT_PATH . 'modules/edocument/default.config.php';
$config = array_merge($config, $newconfig['edocument']);
// save config
if (gcms::saveconfig(CONFIG, $config)) {
$content[] = '<li class=valid>Add <strong>configs</strong> complete.</li>';
} else {
$content[] = '<li class=invalid>' . sprintf($lng['ERROR_FILE_READ_ONLY'], 'bin/config.php') . '</li>';
}
// add vars
if (sizeof($defines) > 0) {
if ($ftp->fwrite(ROOT_PATH . 'bin/vars.php', 'ab', "\n\t// Module E-Document\n\t" . implode("\n\t", $defines))) {