当前位置: 首页>>代码示例>>PHP>>正文


PHP Installer::rawCreate方法代码示例

本文整理汇总了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();
         }
     }
 }
开发者ID:amanpreetsinghmalhotra,项目名称:redaxscript,代码行数:20,代码来源:Module.php

示例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();
开发者ID:redaxmedia,项目名称:redaxscript,代码行数:31,代码来源:bootstrap.php


注:本文中的Installer::rawCreate方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。