本文整理汇总了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';
}
}
}
示例2: Topic
function Topic($values)
{
parent::Entity($values);
}
示例3: ModeratedEntity
function ModeratedEntity($database, $name, $owner = "")
{
Entity::Entity($database, $name, $owner);
$this->addField("passed", VARCHAR, 1);
}
示例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'], '_') . "/";
}
示例5: __construct
public function __construct($where_sql)
{
parent::Entity($where_sql);
}
示例6: ServiceNode
function ServiceNode()
{
parent::Entity();
$this->registerPart('node', new NodeConnection());
$this->registerPart('service', new ServiceLocation());
}
示例7: GuideChapter
public function GuideChapter($where, $guide_link)
{
parent::Entity($where);
$this->guide_link = $guide_link;
}
示例8: ForumPost
function ForumPost($values)
{
parent::Entity($values);
}