CodeIgniter Forums
CI's calendar library - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21)
+--- Thread: CI's calendar library (/showthread.php?tid=27580)



CI's calendar library - El Forum - 02-15-2010

[eluser]terbor[/eluser]
I want to be able to display the days' events using the calendar library. I am stuck on how to display a particular day's event. I see how to manage the different parts of the calendar using $prefs['template'] however I dont know how to grab the day and say just display that day's event. The events are in mysql so I am calling from a cal_model to get my data. This is what I have in my controller so far:

**Note I did change the default cal from the tables it was in to an unordered list. So that is why {cal_cell_no_content} does not have a <td>

Code:
function calendar()

    {
        parent::Controller();

        $this->load->model('calendar_model','calModel');
        
        $prefs = array('start_day'=>'sunday','month_type'=>'long','day_type'=>'long','show_next_prev'=>TRUE,'next_prev_url'=>base_url().'index.php/calendar/show/');


        $prefs['template'] = '

                {cal_cell_no_content}<span>{day}</span>
                    <ul>
                        <li>Open Hockey</li>
                        <li id="location - {day}"></li>
                        <li id="time - {day}"></li>
                    </ul>
                {/cal_cell_no_content}        
            ';
        $this->load->library('calendar', $prefs);

        session_start();

    }