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


PHP x2base::behaviors方法代码示例

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


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

示例1: behaviors

 public function behaviors()
 {
     return array_merge(parent::behaviors(), array('X2MobileControllerBehavior' => array('class' => 'application.modules.mobile.components.behaviors.X2MobileControllerBehavior'), 'QuickCreateRelationshipBehavior' => array('class' => 'QuickCreateRelationshipBehavior', 'attributesOfNewRecordToUpdate' => array('Contacts' => array('nameId' => 'company', 'website' => 'website', 'phone' => 'phone'), 'Opportunity' => array('accountName' => 'id')))));
 }
开发者ID:dsyman2,项目名称:X2CRM,代码行数:4,代码来源:AccountsController.php

示例2: behaviors

 public function behaviors()
 {
     return array_merge(parent::behaviors(), array('CampaignMailingBehavior' => array('class' => 'application.modules.marketing.components.CampaignMailingBehavior'), 'ResponseBehavior' => array('class' => 'application.components.ResponseBehavior', 'isConsole' => false, 'errorCode' => 200)));
 }
开发者ID:shayanyi,项目名称:CRM,代码行数:4,代码来源:MarketingController.php

示例3: behaviors

 public function behaviors()
 {
     return array_merge(parent::behaviors(), array('ImportExportBehavior' => array('class' => 'ImportExportBehavior')));
 }
开发者ID:tymiles003,项目名称:X2CRM,代码行数:4,代码来源:DocsController.php

示例4: behaviors

 public function behaviors()
 {
     return array_merge(parent::behaviors(), array('ServiceRoutingBehavior' => array('class' => 'ServiceRoutingBehavior'), 'QuickCreateRelationshipBehavior' => array('class' => 'QuickCreateRelationshipBehavior')));
 }
开发者ID:shayanyi,项目名称:CRM,代码行数:4,代码来源:ServicesController.php

示例5: behaviors

 public function behaviors()
 {
     return array_merge(parent::behaviors(), array('QuickCreateRelationshipBehavior' => array('class' => 'QuickCreateRelationshipBehavior', 'attributesOfNewRecordToUpdate' => array('Contacts' => array('accountName' => 'company')))));
 }
开发者ID:shuvro35,项目名称:X2CRM,代码行数:4,代码来源:OpportunitiesController.php

示例6: behaviors

 public function behaviors()
 {
     return array_merge(parent::behaviors(), array('ActionsQuickCreateRelationshipBehavior' => array('class' => 'ActionsQuickCreateRelationshipBehavior', 'attributesOfNewRecordToUpdate' => array())));
 }
开发者ID:dsyman2,项目名称:X2CRM,代码行数:4,代码来源:ActionsController.php

示例7: behaviors

 public function behaviors()
 {
     return array_merge(parent::behaviors(), array('X2MobileControllerBehavior' => array('class' => 'application.modules.mobile.components.behaviors.' . 'X2MobileProfileControllerBehavior'), 'ImportExportBehavior' => array('class' => 'ImportExportBehavior')));
 }
开发者ID:dsyman2,项目名称:X2CRM,代码行数:4,代码来源:ProfileController.php

示例8: behaviors

 /**
  * Return a list of external behaviors which are necessary.
  * @return array A merge of the parent class's behaviors with the ContactsController specific 
  *  ones
  */
 public function behaviors()
 {
     return array_merge(parent::behaviors(), array('LeadRoutingBehavior' => array('class' => 'LeadRoutingBehavior'), 'ImportExportBehavior' => array('class' => 'ImportExportBehavior'), 'QuickCreateRelationshipBehavior' => array('class' => 'QuickCreateRelationshipBehavior', 'attributesOfNewRecordToUpdate' => array('Accounts' => array('website' => 'website', 'phone' => 'phone'), 'Opportunity' => array('accountName' => 'company')))));
 }
开发者ID:shuvro35,项目名称:X2CRM,代码行数:9,代码来源:ContactsController.php

示例9: behaviors

 public function behaviors()
 {
     return array_merge(parent::behaviors(), array('LeadRoutingBehavior' => array('class' => 'LeadRoutingBehavior'), 'responds' => array('class' => 'application.components.ResponseBehavior', 'isConsole' => false, 'exitNonFatal' => false, 'longErrorTrace' => false), 'CommonControllerBehavior' => array('class' => 'application.components.CommonControllerBehavior', 'redirectOnNullModel' => false, 'throwOnNullModel' => false)));
 }
开发者ID:tymiles003,项目名称:X2CRM,代码行数:4,代码来源:ApiController.php

示例10: behaviors

 public function behaviors()
 {
     return array_merge(parent::behaviors(), array());
 }
开发者ID:shayanyi,项目名称:CRM,代码行数:4,代码来源:MediaController.php

示例11: behaviors

 public function behaviors()
 {
     return array_merge(parent::behaviors(), array('QuickCreateRelationshipBehavior' => array('class' => 'QuickCreateRelationshipBehavior', 'attributesOfNewRecordToUpdate' => array('Contacts' => array('nameId' => 'company', 'website' => 'website', 'phone' => 'phone'), 'Opportunity' => array('accountName' => 'id')))));
 }
开发者ID:keyeMyria,项目名称:CRM,代码行数:4,代码来源:AccountsController.php


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