本文整理汇总了PHP中Installer::rawCreate方法的典型用法代码示例。如果您正苦于以下问题:PHP Installer::rawCreate方法的具体用法?PHP Installer::rawCreate怎么用?PHP Installer::rawCreate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Installer
的用法示例。
在下文中一共展示了Installer::rawCreate方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: install
/**
* install the module
*
* @since 2.6.0
*/
public function install()
{
if (array_key_exists('alias', static::$_moduleArray)) {
$module = Db::forTablePrefix('modules')->create();
$module->set(static::$_moduleArray);
$module->save();
/* create from sql */
$directory = 'modules/' . static::$_moduleArray['alias'] . '/database';
if (is_dir($directory)) {
$installer = new Installer(Config::getInstance());
$installer->init($directory);
$installer->rawCreate();
}
}
}
示例2: getenv
$config = Config::getInstance();
/* config */
$dbUrl = getenv('DB_URL');
if ($dbUrl) {
$config->parse($dbUrl);
} else {
$config->set('dbType', 'sqlite');
$config->set('dbHost', ':memory:');
}
/* database */
Db::construct($config);
Db::init();
/* installer */
$installer = new Installer($config);
$installer->init();
$installer->rawDrop();
$installer->rawCreate();
$installer->insertData(['adminName' => 'Test', 'adminUser' => 'test', 'adminPassword' => 'test', 'adminEmail' => 'test@test.com']);
/* test user */
Db::forTablePrefix('users')->whereIdIs(1)->findOne()->set(['password' => 'test', 'description' => 'test', 'language' => 'en'])->save();
/* test module */
if (is_dir('modules/TestDummy')) {
$testDummy = new Modules\TestDummy\TestDummy();
$testDummy->install();
}
/* language */
$language = Language::getInstance();
$language->init();
/* hook */
Hook::construct($registry);
Hook::init();