0
私はcodeigniter 3.xバージョンを使用しています。私のページの1つでは、毎日(今日と等しいかそれ以上)のリンクがカレンダーを表示したい。コードギターのカレンダーの日からのリンクを作成する
マイコントローラコードは次のようになります。
$prefs = array(
'start_day' => 'monday',
'month_type' => 'long',
'day_type' => 'short',
'show_next_prev' => TRUE,
'next_prev_url' => base_url().'Hall/display_calendar/'
);
$prefs['template'] = '
{table_open}<table class="call_table" cellspacing="0" cellpadding="0" border="0" style="margin:0 auto;">{/table_open}
{heading_row_start}<tr>{/heading_row_start}
{heading_previous_cell}<th><a href="{previous_url}"><<</a></th>{/heading_previous_cell}
{heading_title_cell}<th colspan="{colspan}">{heading}</th>{/heading_title_cell}
{heading_next_cell}<th><a href="{next_url}">>></a></th>{/heading_next_cell}
{heading_row_end}</tr>{/heading_row_end}
{week_row_start}<tr>{/week_row_start}
{week_day_cell}<td>{week_day}</td>{/week_day_cell}
{week_row_end}</tr>{/week_row_end}
{cal_row_start}<tr>{/cal_row_start}
{cal_cell_start}<td>{/cal_cell_start}
{cal_cell_start_today}<td>{/cal_cell_start_today}
{cal_cell_start_other}<td class="other-month">{/cal_cell_start_other}
// THIS IS THE LINE WHERE I AM TRYING TO CREATE THE LINK
{cal_cell_content}<a href="'.base_url().'Hall/display_calendar/"{content}">{day}</a>{/cal_cell_content}
{cal_cell_content_today}<div class="highlight"><a href="{content}">{day}</a></div>{/cal_cell_content_today}
{cal_cell_no_content}{day}{/cal_cell_no_content}
{cal_cell_no_content_today}<div class="highlight">{day}</div>{/cal_cell_no_content_today}
{cal_cell_blank} {/cal_cell_blank}
{cal_cell_other}{day}{/cal_cel_other}
{cal_cell_end}</td>{/cal_cell_end}
{cal_cell_end_today}</td>{/cal_cell_end_today}
{cal_cell_end_other}</td>{/cal_cell_end_other}
{cal_row_end}</tr>{/cal_row_end}
{table_close}</table>{/table_close}
';
$this->load->library('calendar', $prefs);
そしてビューに、私はちょうどこの持っている:
echo $this->calendar->generate($this->uri->segment(3), $this->uri->segment(4));
をこのコードは動作します、つまり、カレンダーが表示されます次の月と前の月のリンクは正常に機能しますが、リンクは生成されません。
確かに、上のコードが何とか働いていても、カレンダーのすべての日はリンクになります。私はそれで生きることができましたが、過去の日々をリンクにしないとできれば最高です。
とthis oneは私の問題と何らかの形で関連していますが、ここでは何も働いていません。
助けが必要ですか?