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


PHP Agent::settaxonomicgroups方法代码示例

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


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

示例1: getAndChangeAgentFromRequest

 /**
  * Get agent fields from the request, and construct an 
  * agent object using those values.  The agent is loaded from the
  * database and then has values changed from the request if a 
  * value is provided for agentid, otherwise a new agent is 
  * created.  This method does not save the changes to the 
  * database, invoke save on the returned object to accomplish that.
  * 
  * @return an agent object in state dirty, or null if an error
  * occurred in obtaining data.
  */
 public function getAndChangeAgentFromRequest($agentid = '')
 {
     $result = new Agent();
     $agentid = preg_replace("[^0-9]", '', $agentid);
     if (strlen($agentid) > 0) {
         $result->load($agentid);
     }
     $result->setfamilyname($_REQUEST["familyname"]);
     $result->setfirstname($_REQUEST["firstname"]);
     $result->setmiddlename($_REQUEST["middlename"]);
     $result->setprefix($_REQUEST["prefix"]);
     $result->setsuffix($_REQUEST["suffix"]);
     $result->setnamestring($_REQUEST["namestring"]);
     $result->settype($_REQUEST["type"]);
     $result->setyearofbirth($_REQUEST["yearofbirth"]);
     $result->setyearofbirthmodifier($_REQUEST["yearofbirthmodifier"]);
     $result->setyearofdeath($_REQUEST["yearofdeath"]);
     $result->setyearofdeathmodifier($_REQUEST["yearofdeathmodifier"]);
     $result->setstartyearactive($_REQUEST["startyearactive"]);
     $result->setendyearactive($_REQUEST["endyearactive"]);
     $result->setnotes($_REQUEST["notes"]);
     $result->setrating($_REQUEST["rating"]);
     $result->setguid($_REQUEST["guid"]);
     $result->setbiography($_REQUEST["biography"]);
     $result->settaxonomicgroups($_REQUEST["taxonomicgroups"]);
     $result->setcollectionsat($_REQUEST["collectionsat"]);
     $result->setcurated($_REQUEST["curated"]);
     $result->setmbox_sha1sum($_REQUEST["mbox_sha1sum"]);
     $result->setpreferredrecbyid($_REQUEST["preferredrecbyid"]);
     $result->setnototherwisespecified($_REQUEST["nototherwisespecified"]);
     $result->setliving($_REQUEST["living"]);
     return $result;
 }
开发者ID:Symbiota,项目名称:Symbiota,代码行数:44,代码来源:AgentManager.php


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