• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP ky_assure_object函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中ky_assure_object函数的典型用法代码示例。如果您正苦于以下问题:PHP ky_assure_object函数的具体用法?PHP ky_assure_object怎么用?PHP ky_assure_object使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



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

示例1: setSelectedOptions

 /**
  * Sets selected options of this custom field.
  *
  * @param kyCustomFieldOption[] $options List of options.
  * @return kyCustomFieldMultiSelect
  */
 public function setSelectedOptions($options)
 {
     //make sure it's array
     if (!is_array($options)) {
         if ($options === null) {
             $options = array();
         } else {
             $options = array($options);
         }
     }
     //check for proper class and eliminate duplicates
     $options_ids = array();
     $this->options = array();
     foreach ($options as $option) {
         $option = ky_assure_object($option, 'kyCustomFieldOption');
         if ($option !== null && !in_array($option->getId(), $options_ids)) {
             $this->options[] = $option;
             $options_ids[] = $option->getId();
         }
     }
     //update raw value
     $option_values = array();
     foreach ($this->options as $field_option) {
         $option_values[] = $field_option->getValue();
     }
     $this->raw_value = implode(self::VALUES_SEPARATOR, $option_values);
 }
开发者ID:vitalyzhakov,项目名称:php-api-library,代码行数:33,代码来源:kyCustomFieldMultiSelect.php


示例2: setSelectedOption

 /**
  * Sets the field selected option.
  *
  * @param kyCustomFieldOption $option Child (linked) field option.
  * @return kyCustomFieldLinkedSelect
  */
 public function setSelectedOption($option)
 {
     $this->option = ky_assure_object($option, 'kyCustomFieldOption');
     if ($this->option !== null) {
         $parent_option = $this->getOption($this->option->getParentOptionId());
         $this->raw_value = implode(self::PARENT_CHILD_SEPARATOR, array($parent_option->getValue(), $this->option->getValue()));
     } else {
         $this->raw_value = null;
     }
     return $this;
 }
开发者ID:vitalyzhakov,项目名称:php-api-library,代码行数:17,代码来源:kyCustomFieldLinkedSelect.php


示例3: setSelectedOption

 /**
  * Sets the field selected option.
  *
  * @param kyCustomFieldOption $option Field option.
  * @return kyCustomFieldWithOptions
  */
 public function setSelectedOption($option)
 {
     $this->option = ky_assure_object($option, 'kyCustomFieldOption');
     $this->raw_value = $this->option !== null ? $this->option->getValue() : null;
     return $this;
 }
开发者ID:BillTheBest,项目名称:1.6.x,代码行数:12,代码来源:kyCustomFieldSelect.php


示例4: setOwnerStaff

 /**
  * Sets staff user, owner of this ticket.
  *
  * @param kyStaff $owner_staff Staff user.
  * @return kyTicket
  */
 public function setOwnerStaff($owner_staff)
 {
     $this->owner_staff = ky_assure_object($owner_staff, 'kyStaff');
     $this->owner_staff_id = $this->owner_staff !== null ? $this->owner_staff->getId() : null;
     return $this;
 }
开发者ID:vitalyzhakov,项目名称:php-api-library,代码行数:12,代码来源:kyTicket.php


示例5: setStaffGroup

 /**
  * Sets staff group for the staff user.
  *
  * @param kyStaffGroup $staff_group Staff group object.
  * @return kyStaff
  */
 public function setStaffGroup($staff_group)
 {
     $this->staff_group = ky_assure_object($staff_group, 'kyStaffGroup');
     $this->staff_group_id = $this->staff_group !== null ? $staff_group->getId() : null;
     return $this;
 }
开发者ID:TecSecret,项目名称:whmcs-integration,代码行数:12,代码来源:kyStaff.php


示例6: setUserOrganization

 /**
  * Sets user organization assigned to the user.
  *
  * @param kyUserOrganization $user_organization User organization.
  * @return kyUser
  */
 public function setUserOrganization(kyUserOrganization $user_organization)
 {
     $this->user_organization = ky_assure_object($user_organization, 'kyUserOrganization');
     $this->user_organization_id = $this->user_organization !== null ? $this->user_organization->getId() : null;
     return $this;
 }
开发者ID:BillTheBest,项目名称:1.6.x,代码行数:12,代码来源:kyUser.php


示例7: setEditedStaff

 /**
  * Sets staff user, the editor of this news item update.
  *
  * @param kyStaff $staff Staff user.
  * @return kyNewsItem
  */
 public function setEditedStaff($staff)
 {
     $this->edited_staff = ky_assure_object($staff, 'kyStaff');
     $this->edited_staff_id = $this->edited_staff !== null ? $this->edited_staff->getId() : null;
     return $this;
 }
开发者ID:vitalyzhakov,项目名称:php-api-library,代码行数:12,代码来源:kyNewsItem.php


示例8: setParentDepartment

 /**
  * Sets parent department for this department.
  *
  * @param kyDepartment $parent_department Department object that will be the parent for this department.
  * @return kyDepartment
  */
 public function setParentDepartment($parent_department)
 {
     $this->parent_department = ky_assure_object($parent_department, 'kyDepartment');
     $this->parent_department_id = $this->parent_department !== null ? $this->parent_department->getId() : null;
     return $this;
 }
开发者ID:vitalyzhakov,项目名称:php-api-library,代码行数:12,代码来源:kyDepartment.php


示例9: setParentComment

 /**
  * Sets the parent comment (comment that this comment is a reply to).
  *
  * @param kyCommentBase $parent_comment Parent comment (comment that this comment is a reply to).
  * @return $this
  */
 public function setParentComment($parent_comment)
 {
     $this->parent_comment = ky_assure_object($parent_comment, get_class($this));
     $this->parent_comment_id = $this->parent_comment !== null ? $this->parent_comment->getId() : null;
     return $this;
 }
开发者ID:vitalyzhakov,项目名称:php-api-library,代码行数:12,代码来源:kyCommentBase.php


示例10: setStaff

 /**
  * Sets staff user, the creator of this knowledgebase article.
  *
  * @param kyStaff $staff Staff user.
  * @return kyKnowledgebaseArticle
  */
 public function setStaff($creator)
 {
     $this->creator = ky_assure_object($creator, 'kyStaff');
     $this->creator_id = $this->creator !== null ? $this->creator->getId() : null;
     return $this;
 }
开发者ID:vitalyzhakov,项目名称:php-api-library,代码行数:12,代码来源:kyKnowledgebaseArticle.php


示例11: setStaff

 /**
  * Sets staff user, the creator of this post.
  *
  * @param kyStaff $staff Staff user.
  * @return kyTicketPost
  */
 public function setStaff($staff)
 {
     $this->staff = ky_assure_object($staff, 'kyStaff');
     $this->staff_id = $this->staff !== null ? $this->staff->getId() : null;
     $this->creator = $this->staff !== null ? self::CREATOR_STAFF : null;
     $this->user_id = null;
     $this->user = null;
     return $this;
 }
开发者ID:vitalyzhakov,项目名称:php-api-library,代码行数:15,代码来源:kyTicketPost.php


示例12: setCreatorStaff

 /**
  * Sets staff user that creates the time track.
  *
  * @param kyStaff $creator_staff Staff user that creates the time track.
  * @return kyTicketTimeTrack
  */
 public function setCreatorStaff($creator_staff)
 {
     $this->creator_staff = ky_assure_object($creator_staff, 'kyStaff');
     $this->creator_staff_id = $this->creator_staff !== null ? $this->creator_staff->getId() : null;
     $this->creator_staff_name = $this->creator_staff !== null ? $this->creator_staff->getFullName() : null;
     return $this;
 }
开发者ID:TecSecret,项目名称:whmcs-integration,代码行数:13,代码来源:kyTicketTimeTrack.php


示例13: setTicketPost

 /**
  * Sets the ticket post this attachment will be attached to.
  *
  * Automatically sets the ticket.
  *
  * @param kyTicketPost $ticket_post Ticket post.
  */
 public function setTicketPost($ticket_post)
 {
     $this->ticket_post = ky_assure_object($ticket_post, 'kyTicketPost');
     $this->ticket_post_id = $this->ticket_post !== null ? $this->ticket_post->getId() : null;
     $this->ticket = $this->ticket_post !== null ? $this->ticket_post->getTicket() : null;
     $this->ticket_id = $this->ticket !== null ? $this->ticket->getId() : null;
 }
开发者ID:TecSecret,项目名称:whmcs-integration,代码行数:14,代码来源:kyTicketAttachment.php


示例14: setNewsItem

 /**
  * Sets news item.
  *
  * @param kyNewsItem $news_item News item.
  * @return kyNewsComment
  */
 public function setNewsItem($news_item)
 {
     $this->news_item = ky_assure_object($news_item, 'kyNewsItem');
     $this->news_item_id = $this->news_item !== null ? $this->news_item->getId() : null;
     return $this;
 }
开发者ID:vitalyzhakov,项目名称:php-api-library,代码行数:12,代码来源:kyNewsComment.php


示例15: setKbarticle

 /**
  * Sets KnowledgebaseArticle.
  *
  * @param kyKnowledgebaseArticle $kbarticle kbarticle item.
  * @return kyKnowledgebaseComment
  */
 public function setKbarticle($kbarticle)
 {
     $this->kbarticle = ky_assure_object($kbarticle, 'kyKnowledgebaseArticle');
     $this->kbarticle_id = $this->kbarticle !== null ? $this->kbarticle->getId() : null;
     return $this;
 }
开发者ID:vitalyzhakov,项目名称:php-api-library,代码行数:12,代码来源:kyKnowledgebaseComment.php


示例16: setTroubleshooterStep

 /**
  * Sets the troubleshooterstep item
  *
  * @param int $troubleshooterstep_item
  *
  * @return $this
  */
 public function setTroubleshooterStep($troubleshooterstep_item)
 {
     $this->troubleshooterstep_item = ky_assure_object($troubleshooterstep_item, 'kyTroubleshooterStep');
     $this->troubleshooterstep_item_id = $this->troubleshooterstep_item !== null ? $this->troubleshooterstep_item->getId() : null;
     return $this;
 }
开发者ID:vitalyzhakov,项目名称:php-api-library,代码行数:13,代码来源:kyTroubleshooterComment.php



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP ky_assure_positive_int函数代码示例发布时间:2022-05-15
下一篇:
PHP kunena_htmlspecialchars函数代码示例发布时间:2022-05-15
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap