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


PHP CRM_Case_BAO_Case::createCaseViews方法代码示例

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


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

示例1: upgrade_4_1_alpha1

 /**
  * @param $rev
  */
 public function upgrade_4_1_alpha1($rev)
 {
     $config = CRM_Core_Config::singleton();
     if (in_array('CiviCase', $config->enableComponents)) {
         if (!CRM_Case_BAO_Case::createCaseViews()) {
             $template = CRM_Core_Smarty::singleton();
             $afterUpgradeMessage = '';
             if ($afterUpgradeMessage = $template->get_template_vars('afterUpgradeMessage')) {
                 $afterUpgradeMessage .= "<br/><br/>";
             }
             $afterUpgradeMessage .= '<div class="crm-upgrade-case-views-error" style="background-color: #E43D2B; padding: 10px;">' . ts("There was a problem creating CiviCase database views. Please create the following views manually before using CiviCase:");
             $afterUpgradeMessage .= '<div class="crm-upgrade-case-views-query"><div>' . CRM_Case_BAO_Case::createCaseViewsQuery('upcoming') . '</div><div>' . CRM_Case_BAO_Case::createCaseViewsQuery('recent') . '</div>' . '</div></div>';
             $template->assign('afterUpgradeMessage', $afterUpgradeMessage);
         }
     }
     $upgrade = new CRM_Upgrade_Form();
     $upgrade->processSQL($rev);
     $this->transferPreferencesToSettings();
     $this->createNewSettings();
     // now modify the config so that the directories are now stored in the settings table
     // CRM-8780
     $params = array();
     CRM_Core_BAO_ConfigSetting::add($params);
     // also reset navigation
     CRM_Core_BAO_Navigation::resetNavigation();
 }
开发者ID:hyebahi,项目名称:civicrm-core,代码行数:29,代码来源:FourOne.php

示例2: onToggleComponents

 /**
  * (Setting Callback)
  * Respond to changes in the "enable_components" setting
  *
  * If CiviCase is being enabled, load the case related sample data
  *
  * @param array $oldValue
  *   List of component names.
  * @param array $newValue
  *   List of component names.
  * @param array $metadata
  *   Specification of the setting (per *.settings.php).
  */
 public static function onToggleComponents($oldValue, $newValue, $metadata)
 {
     if (in_array('CiviCase', $newValue) && (!$oldValue || !in_array('CiviCase', $oldValue))) {
         $pathToCaseSampleTpl = __DIR__ . '/xml/configuration.sample/';
         CRM_Admin_Form_Setting_Component::loadCaseSampleData($pathToCaseSampleTpl . 'case_sample.mysql.tpl');
         if (!CRM_Case_BAO_Case::createCaseViews()) {
             $msg = ts("Could not create the MySQL views for CiviCase. Your mysql user needs to have the 'CREATE VIEW' permission");
             CRM_Core_Error::fatal($msg);
         }
     }
 }
开发者ID:konadave,项目名称:civicrm-core,代码行数:24,代码来源:Info.php

示例3: onToggleComponents

 /**
  * (Setting Callback)
  * Respond to changes in the "enable_components" setting
  *
  * If CiviCase is being enabled, load the case related sample data
  *
  * @param array $oldValue List of component names
  * @param array $newValue List of component names
  * @param array $metadata Specification of the setting (per *.settings.php)
  */
 public static function onToggleComponents($oldValue, $newValue, $metadata)
 {
     if (in_array('CiviCase', $newValue) && (!$oldValue || !in_array('CiviCase', $oldValue))) {
         $config = CRM_Core_Config::singleton();
         CRM_Admin_Form_Setting_Component::loadCaseSampleData($config->dsn, $config->sqlDir . 'case_sample.mysql');
         CRM_Admin_Form_Setting_Component::loadCaseSampleData($config->dsn, $config->sqlDir . 'case_sample1.mysql');
         if (!CRM_Case_BAO_Case::createCaseViews()) {
             $msg = ts("Could not create the MySQL views for CiviCase. Your mysql user needs to have the 'CREATE VIEW' permission");
             CRM_Core_Error::fatal($msg);
         }
     }
 }
开发者ID:hguru,项目名称:224Civi,代码行数:22,代码来源:Info.php

示例4: postProcess

 public function postProcess()
 {
     $params = $this->controller->exportValues($this->_name);
     $params['enableComponentIDs'] = array();
     foreach ($params['enableComponents'] as $name) {
         $params['enableComponentIDs'][] = $this->_components[$name]->componentID;
     }
     // if CiviCase is being enabled,
     // load the case related sample data
     if (in_array('CiviCase', $params['enableComponents']) && !in_array('CiviCase', $this->_defaults['enableComponents'])) {
         $config = CRM_Core_Config::singleton();
         CRM_Admin_Form_Setting_Component::loadCaseSampleData($config->dsn, $config->sqlDir . 'case_sample.mysql');
         CRM_Admin_Form_Setting_Component::loadCaseSampleData($config->dsn, $config->sqlDir . 'case_sample1.mysql');
         if (!CRM_Case_BAO_Case::createCaseViews()) {
             CRM_Core_Error::fatal('Could not create Case views.');
         }
     }
     parent::commonProcess($params);
     // reset navigation when components are enabled / disabled
     CRM_Core_BAO_Navigation::resetNavigation();
 }
开发者ID:peteainsworth,项目名称:civicrm-4.2.9-drupal,代码行数:21,代码来源:Component.php


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