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


PHP DynamicField::addFieldObject方法代码示例

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


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

示例1: setUp

 /**
  * Creating new field, account, contact with filled custom field, relationship between them
  */
 public function setUp()
 {
     SugarTestHelper::setUp('beanList');
     SugarTestHelper::setUp('beanFiles');
     SugarTestHelper::setUp('current_user', array(true, true));
     $this->field = get_widget('varchar');
     $this->field->id = 'Contactstest_c';
     $this->field->name = 'test_c';
     $this->field->type = 'varchar';
     $this->field->len = 255;
     $this->field->importable = 'true';
     $this->field->label = '';
     $this->module = new Contact();
     $this->dynamicField = new DynamicField('Contacts');
     $this->dynamicField->setup($this->module);
     $this->dynamicField->addFieldObject($this->field);
     SugarTestHelper::setUp('dictionary');
     $GLOBALS['reload_vardefs'] = true;
     $this->account = SugarTestAccountUtilities::createAccount();
     $this->contact = SugarTestContactUtilities::createContact();
     $this->contact->account_id = $this->account->id;
     $this->contact->test_c = 'test value';
     $this->contact->load_relationship('accounts');
     $this->contact->accounts->add($this->account->id);
     $this->contact->save();
     $GLOBALS['db']->commit();
 }
开发者ID:butschster,项目名称:sugarcrm_dev,代码行数:30,代码来源:Bug58138Test.php

示例2: save

 /**
  * save
  *
  * This function says the field template by calling the DynamicField addFieldObject function.  It then
  * checks to see if updates are needed for the SearchFields.php file.  In the event that the unified_search
  * member variable is set to true, a search field definition is updated/created to the SearchFields.php file.
  *
  * @param DynamicField $df
  */
 function save($df)
 {
     //	    $GLOBALS['log']->debug('saving field: '.print_r($this,true));
     $df->addFieldObject($this);
     require_once 'modules/ModuleBuilder/parsers/parser.searchfields.php';
     $searchFieldParser = new ParserSearchFields($df->getModuleName(), $df->getPackageName());
     //If unified_search is enabled for this field, then create the SearchFields entry
     $fieldName = $this->get_field_name($df->getModuleName(), $this->name);
     if ($this->unified_search && !isset($searchFieldParser->searchFields[$df->getModuleName()][$fieldName])) {
         $searchFieldParser->addSearchField($fieldName, array('query_type' => 'default'));
         $searchFieldParser->saveSearchFields($searchFieldParser->searchFields);
     }
 }
开发者ID:sacredwebsite,项目名称:SuiteCRM,代码行数:22,代码来源:TemplateField.php


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