本文整理汇总了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);
}
}
示例2: __construct
public function __construct($db, $userID = null)
{
parent::__construct($db, 'users_profiles');
if ($userID > 0) {
$this->setUserId($userID);
}
}
示例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);
}
}
示例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);
}
}
示例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);
}
}
示例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);
}
}
示例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);
}
}
示例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);
}
}
示例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);
}
示例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
}
}
示例11: __construct
public function __construct($profileId, Agent $agent)
{
parent::__construct($profileId);
$this->agent = $agent;
}
示例12:
function __construct($proxy = "192.168.1.23")
{
parent::__construct("certified-proxy");
$this->proxy = $proxy;
}
示例13: __construct
/**
* @param string $profileId
* @param Activity $activity
*/
public function __construct($profileId, Activity $activity)
{
parent::__construct($profileId);
$this->activity = $activity;
}