public function getLinkAccountCreate()
 {
     $html = $this->Html;
     $title = __('アカウント作成');
     $url = UrlUtil::getAccountCreate();
     $options = array();
     return $html->link($title, $url, $options);
 }
 /**
  * アカウント情報作成リンク
  * @param int $index
  * @return string
  */
 public function getLinkAccountCreate()
 {
     $form = $this->ExtForm;
     $title = __('アカウント作成');
     $url = UrlUtil::getAccountCreate();
     $options = array();
     return $form->postLink($title, $url, $options);
 }
 /**
  * アカウント作成リンク
  * @param HtmlHelper $html
  * @return string
  */
 private static function getLinkAccountCreate(HtmlHelper $html)
 {
     $title = __('アカウント作成');
     $url = UrlUtil::getAccountCreate();
     $options = array();
     return $html->link($title, $url, $options);
 }