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


PHP Installer::getInstance方法代码示例

本文整理汇总了PHP中Installer::getInstance方法的典型用法代码示例。如果您正苦于以下问题:PHP Installer::getInstance方法的具体用法?PHP Installer::getInstance怎么用?PHP Installer::getInstance使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Installer的用法示例。


在下文中一共展示了Installer::getInstance方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: control

 public function control()
 {
     $this->installer = Installer::getInstance();
     if (@$_GET['step'] != 'repair') {
         $this->checkForExistingInstallation();
     }
     //route user to the right step
     if (!isset($_GET['step']) || $_GET['step'] == '1') {
         $this->step1();
     } elseif ($_GET['step'] == '2') {
         $this->step2();
     } elseif ($_GET['step'] == '3') {
         $this->step3();
     } elseif ($_GET['step'] == 'repair') {
         $repair_what = isset($_GET['m']) ? $_GET['m'] : '';
         $this->repairInstallation($repair_what);
     } else {
         $this->step1();
     }
     return $this->generateView();
 }
开发者ID:jkuehl-carecloud,项目名称:ThinkUp,代码行数:21,代码来源:class.InstallerController.php

示例2: testGetTablesToInstall

 public function testGetTablesToInstall()
 {
     $installer = Installer::getInstance();
     $tables = $installer->getTablesToInstall();
     $expected_tables = array('encoded_locations', 'follower_count', 'follows', 'instances', 'links', 'owner_instances', 'owners', 'plugin_options', 'plugins', 'post_errors', 'posts', 'user_errors', 'users');
     $this->assertIdentical($tables, $expected_tables);
 }
开发者ID:unruthless,项目名称:ThinkUp,代码行数:7,代码来源:TestOfInstaller.php

示例3: testGetTablesToInstall

 public function testGetTablesToInstall()
 {
     $installer = Installer::getInstance();
     $tables = $installer->getTablesToInstall();
     $expected_tables = array('encoded_locations', 'favorites', 'follower_count', 'follows', 'group_member_count', 'group_members', 'groups', 'hashtags', 'hashtags_posts', 'instances', 'instances_twitter', 'invites', 'links', 'links_short', 'mentions', 'mentions_posts', 'options', 'owner_instances', 'owners', 'places', 'places_posts', 'plugins', 'post_errors', 'posts', 'stream_data', 'stream_procs', 'user_errors', 'users');
     $this->assertIdentical($tables, $expected_tables);
 }
开发者ID:ravi-modria,项目名称:ThinkUp,代码行数:7,代码来源:TestOfInstaller.php

示例4: testGetTablesToInstall

 public function testGetTablesToInstall()
 {
     $installer = Installer::getInstance();
     $tables = $installer->getTablesToInstall();
     $expected_tables = array('cookies', 'count_history', 'encoded_locations', 'favorites', 'follows', 'group_members', 'groups', 'hashtags', 'hashtags_posts', 'insight_baselines', 'insights', 'instances', 'instances_facebook', 'instances_hashtags', 'instances_twitter', 'invites', 'links', 'links_short', 'mentions', 'mentions_posts', 'options', 'owner_instances', 'owners', 'photos', 'places', 'places_posts', 'plugins', 'post_errors', 'posts', 'sessions', 'stream_data', 'stream_procs', 'user_errors', 'user_versions', 'users', 'videos');
     $this->assertIdentical($tables, $expected_tables);
 }
开发者ID:dgw,项目名称:ThinkUp,代码行数:7,代码来源:TestOfInstaller.php


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