public function getLinkCategoriesCreate()
 {
     $html = $this->Html;
     $title = __('事業目的登録');
     $url = UrlUtil::getCategoriesCreate();
     $options = array();
     return $html->link($title, $url, $options);
 }
 /**
  * メンバ登録リンク
  * @param HtmlHelper $html
  * @return string
  */
 private static function getLinkCategoriesCreate(HtmlHelper $html)
 {
     $title = __('事業目的登録');
     $url = UrlUtil::getCategoriesCreate();
     $options = array();
     return $html->link($title, $url, $options);
 }