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


PHP Entity::Entity方法代码示例

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


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

示例1: User

 function User($sql_where)
 {
     parent::Entity($sql_where);
     if ($this['id']) {
         // Imposta defaults su nulls
         if (!$this['avatar']) {
             $this['avatar'] = "default.png";
         }
         if (!$this['member_location']) {
             $this['member_location'] = 'Località non disponibile';
         }
         if (!$this['member_employ']) {
             $this['member_employ'] = 'Impiego non disponibile';
         }
     }
 }
开发者ID:pierotofy,项目名称:pierotofy.it,代码行数:16,代码来源:User.php

示例2: Topic

 function Topic($values)
 {
     parent::Entity($values);
 }
开发者ID:pierotofy,项目名称:pierotofy.it,代码行数:4,代码来源:Topic.php

示例3: ModeratedEntity

 function ModeratedEntity($database, $name, $owner = "")
 {
     Entity::Entity($database, $name, $owner);
     $this->addField("passed", VARCHAR, 1);
 }
开发者ID:stefanocortellessa,项目名称:VisitAQ,代码行数:5,代码来源:beContent.inc.php

示例4: Guide

 public function Guide($values)
 {
     parent::Entity($values);
     $this->exists = $this['id'] != null ? true : false;
     $this->link = "/p/guide/" . $this['id'] . "-" . Text::AlphaNumericFilter($this['name'], '_') . "/";
 }
开发者ID:pierotofy,项目名称:pierotofy.it,代码行数:6,代码来源:Guide.php

示例5: __construct

 public function __construct($where_sql)
 {
     parent::Entity($where_sql);
 }
开发者ID:pierotofy,项目名称:pierotofy.it,代码行数:4,代码来源:Message.php

示例6: ServiceNode

 function ServiceNode()
 {
     parent::Entity();
     $this->registerPart('node', new NodeConnection());
     $this->registerPart('service', new ServiceLocation());
 }
开发者ID:BackupTheBerlios,项目名称:limb-svn,代码行数:6,代码来源:ServiceNode.class.php

示例7: GuideChapter

 public function GuideChapter($where, $guide_link)
 {
     parent::Entity($where);
     $this->guide_link = $guide_link;
 }
开发者ID:pierotofy,项目名称:pierotofy.it,代码行数:5,代码来源:GuideChapter.php

示例8: ForumPost

 function ForumPost($values)
 {
     parent::Entity($values);
 }
开发者ID:pierotofy,项目名称:pierotofy.it,代码行数:4,代码来源:ForumPost.php


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