/**
  * 数字で渡ってくるパラメータを文字列に変換したものを付与します。
  *
  * @access private
  * @return void
  * @author shimma
  */
 public function addDisplayStrings($fleamarket)
 {
     /**
      * エントリースタイル名
      * '1' => '手持ち出店',
      * '2' => '手持ち出店(プロ)',
      * '3' => '車出店',
      * '4' => '車出店(プロ)',
      * '5' => '企業手持ち出店',
      * '6' => '企業車出店',
      * '7' => '飲食店',
      */
     if (!empty($fleamarket['fleamarket_entry_style_id'])) {
         $fleamarket['fleamarket_entry_style_name'] = Config::get("master.entry_styles.{$fleamarket['fleamarket_entry_style_id']}", '-');
     }
     /**
      *  エントリー費用
      *  現在の所、車出店など横に出している
      */
     if (isset($fleamarket['booth_fee']) && isset($fleamarket['fleamarket_entry_style_name'])) {
         $fleamarket['booth_fee_string'] = $this->createFeeString($fleamarket['fleamarket_entry_style_name'], $fleamarket['booth_fee']);
     } else {
         $fleamarket['booth_fee_string'] = 'お問い合わせ';
     }
     //@todo 果たしてfleamarketで丸ごとarrayを渡すのはいいのか確認
     $fleamarket['entry_styles'] = \Model_Fleamarket_Entry_Style::getFleamarketEntryStyle($fleamarket);
     $fleamarket['total_booth'] = \Model_Fleamarket_Entry_Style::getTotalBooth($fleamarket);
     return $fleamarket;
 }