本文整理匯總了PHP中opToolkit::extractTargetDay方法的典型用法代碼示例。如果您正苦於以下問題:PHP opToolkit::extractTargetDay方法的具體用法?PHP opToolkit::extractTargetDay怎麽用?PHP opToolkit::extractTargetDay使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類opToolkit
的用法示例。
在下文中一共展示了opToolkit::extractTargetDay方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: executeProfile
/**
* Executes profile action
*
* @param sfRequest $request A request object
*/
public function executeProfile($request)
{
$this->redirectIf($this->relation->isAccessBlocked(), '@error');
$id = $this->getRequestParameter('id', $this->getUser()->getMemberId());
$this->member = Doctrine::getTable('Member')->find($id);
$this->forward404Unless($this->member, 'Undefined member.');
if (!$this->friendsSize) {
$this->friendsSize = 9;
}
$this->friends = $this->member->getFriends($this->friendsSize, true);
if (!$this->communitiesSize) {
$this->communitiesSize = 9;
}
$this->communities = $this->member->getJoinCommunities($this->communitiesSize, true);
$this->crownIds = Doctrine::getTable('CommunityMember')->getCommunityIdsOfAdminByMemberId($id);
$birthday = Doctrine::getTable('MemberProfile')->getViewableProfileByMemberIdAndProfileName($id, 'op_preset_birthday');
$this->targetDay = $birthday ? opToolkit::extractTargetDay((string) $birthday) : false;
return sfView::SUCCESS;
}
示例2: executeBirthdayBox
public function executeBirthdayBox(opWebRequest $request)
{
$id = $request->getParameter('id', $this->getUser()->getMemberId());
$birthday = Doctrine::getTable('MemberProfile')->getViewableProfileByMemberIdAndProfileName($id, 'op_preset_birthday');
$this->targetDay = $birthday ? opToolkit::extractTargetDay((string) $birthday) : false;
}
示例3: executeProfile
/**
* Executes profile action
*
* @param sfRequest $request A request object
*/
public function executeProfile($request)
{
$id = $this->getRequestParameter('id', $this->getUser()->getMemberId());
if ('member_profile_mine' === sfContext::getInstance()->getRouting()->getCurrentRouteName()) {
$this->forward404Unless($id);
$this->member = $this->getUser()->getMember();
} else {
$this->member = $this->getRoute()->getObject();
}
if (!$this->friendsSize) {
$this->friendsSize = 9;
}
$this->friends = $this->member->getFriends($this->friendsSize, true);
if (!$this->communitiesSize) {
$this->communitiesSize = 9;
}
$this->communities = $this->member->getJoinCommunities($this->communitiesSize, true);
$this->crownIds = Doctrine::getTable('CommunityMember')->getCommunityIdsOfAdminByMemberId($id);
$birthday = Doctrine::getTable('MemberProfile')->getViewableProfileByMemberIdAndProfileName($id, 'op_preset_birthday');
$this->targetDay = $birthday ? opToolkit::extractTargetDay((string) $birthday) : false;
return sfView::SUCCESS;
}