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


PHP Profile::__construct方法代码示例

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


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

示例1: __construct

 public function __construct($db, $post_id = null)
 {
     parent::__construct($db, 'blog_posts_profile');
     if ($post_id > 0) {
         $this->setPostId($post_id);
     }
 }
开发者ID:kalroot,项目名称:phpweb20demo,代码行数:7,代码来源:BlogPost.php

示例2: __construct

 public function __construct($db, $userID = null)
 {
     parent::__construct($db, 'users_profiles');
     if ($userID > 0) {
         $this->setUserId($userID);
     }
 }
开发者ID:vinnivinsachi,项目名称:Vincent-DR,代码行数:7,代码来源:User.php

示例3: __construct

 public function __construct($db, $product_id = null)
 {
     parent::__construct($db, 'user_products_profile');
     //echo "<br/>here at profile construct<br/>";
     if ($product_id > 0) {
         $this->setPostId($product_id);
     }
 }
开发者ID:vinnivinsachi,项目名称:Vincent-DR,代码行数:8,代码来源:UserProducts.php

示例4: __construct

 public function __construct($db, $univeralDue_id = null)
 {
     parent::__construct($db, 'universal_dues_profile');
     //echo "<br/>here at profile construct<br/>";
     if ($univeralDue_id > 0) {
         $this->setUniversalDueId($univeralDue_id);
     }
 }
开发者ID:vinnivinsachi,项目名称:Vincent-DR,代码行数:8,代码来源:UniversalDue.php

示例5: __construct

 public function __construct($db, $individualDue_key = null)
 {
     parent::__construct($db, 'individual_dues_profile');
     //echo "<br/>here at profile construct<br/>";
     if (strlen($individualDue_key) > 0) {
         $this->setIndividualDueId($individualDue_key);
     }
 }
开发者ID:vinnivinsachi,项目名称:Vincent-DR,代码行数:8,代码来源:IndividualDue.php

示例6: __construct

 public function __construct($db, $promotion_id = null)
 {
     parent::__construct($db, 'promotions_profile');
     //echo "<br/>here at profile construct<br/>";
     if ($promotion_id > 0) {
         $this->setPromotionId($promotion_id);
     }
 }
开发者ID:vinnivinsachi,项目名称:Vincent-DR,代码行数:8,代码来源:Promotion.php

示例7: __construct

 public function __construct($db, $message_id = null)
 {
     parent::__construct($db, 'receiver_messages_profile');
     //echo "<br/>here at profile construct<br/>";
     if (strlen($message_id) > 0) {
         $this->setMessageId($message_id);
     }
 }
开发者ID:vinnivinsachi,项目名称:Vincent-DR,代码行数:8,代码来源:ReceiverMessage.php

示例8: __construct

 public function __construct($db, $event_id = null)
 {
     parent::__construct($db, 'events_profile');
     //echo "<br/>here at profile construct<br/>";
     if ($event_id > 0) {
         $this->setEventId($event_id);
     }
 }
开发者ID:vinnivinsachi,项目名称:Vincent-DR,代码行数:8,代码来源:Event.php

示例9: __construct

 /**
  * Class Constructor
  *
  * @param integer $user_id
  */
 public function __construct($userId = 0, $cacheMinutes = 0, $dbInstanceKey = null)
 {
     parent::__construct($dbInstanceKey);
     if (!is_numeric($userId)) {
         throw new InvalidArgumentException("Received invalid user_id");
     }
     $this->userId = $userId;
     $this->initUserAnswers($cacheMinutes);
 }
开发者ID:Welvin,项目名称:stingle,代码行数:14,代码来源:UserProfile.class.php

示例10: __construct

 public function __construct($db, $profile_id = null)
 {
     parent::__construct($db, 'shopping_cart_profile_attribute');
     //second is the table name for the profile
     //echo "<br/> here at profile_blogpost.";
     //echo "<br/>current post id at profile_blogpost: ".$post_id;
     if ($profile_id > 0) {
         //echo "<br/> here at setting the id";
         $this->setPostId($profile_id);
         //inserting the post id
     }
 }
开发者ID:vinnivinsachi,项目名称:Vincent-DR,代码行数:12,代码来源:CartAttribute.php

示例11: __construct

 public function __construct($profileId, Agent $agent)
 {
     parent::__construct($profileId);
     $this->agent = $agent;
 }
开发者ID:php-xapi,项目名称:model,代码行数:5,代码来源:AgentProfile.php

示例12:

 function __construct($proxy = "192.168.1.23")
 {
     parent::__construct("certified-proxy");
     $this->proxy = $proxy;
 }
开发者ID:josuerodriguesbr,项目名称:Gismeaux,代码行数:5,代码来源:profiles.php

示例13: __construct

 /**
  * @param string   $profileId
  * @param Activity $activity
  */
 public function __construct($profileId, Activity $activity)
 {
     parent::__construct($profileId);
     $this->activity = $activity;
 }
开发者ID:php-xapi,项目名称:model,代码行数:9,代码来源:ActivityProfile.php


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