本文整理汇总了PHP中UrlUtil::getAccountList方法的典型用法代码示例。如果您正苦于以下问题:PHP UrlUtil::getAccountList方法的具体用法?PHP UrlUtil::getAccountList怎么用?PHP UrlUtil::getAccountList使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UrlUtil
的用法示例。
在下文中一共展示了UrlUtil::getAccountList方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: comp
/**
* 登録完了
*/
public function comp()
{
$ctl = $this;
$url = UrlUtil::getAccountList();
//$ctl->redirect($url);
$this->redirect($url);
}
示例2: getLinkAccountList
public function getLinkAccountList()
{
$html = $this->Html;
$title = __('アカウント情報');
$url = UrlUtil::getAccountList();
$options = array();
return $html->link($title, $url, $options);
}
示例3: index
public function index($tbl_user_id)
{
$ctl = $this;
$model = $ctl->UserDelete;
$request = $ctl->request;
$session = $ctl->Session;
$flashMessage = __('アカウント情報の削除に失敗しました');
if ($request->is('post')) {
if ($model->deleteUser($tbl_user_id)) {
$flashMessage = __('アカウント情報の削除が完了しました');
}
}
$session->setFlash($flashMessage);
$url = UrlUtil::getAccountList();
$this->redirect($url);
}
示例4: getLinkAccountList
/**
* アカウント情報一覧リンク
* @param int $index
* @return string
*/
public function getLinkAccountList()
{
$form = $this->ExtForm;
$title = __('アカウント一覧');
$url = UrlUtil::getAccountList();
$options = array();
return $form->postLink($title, $url, $options);
}
示例5: getLinkAccountList
/**
* アカウントリストリンク
* @param HtmlHelper $html
* @return string
*/
private static function getLinkAccountList(HtmlHelper $html)
{
$title = __('アカウント情報');
$url = UrlUtil::getAccountList();
$options = array();
return $html->link($title, $url, $options);
}