X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=plugins%2Fcalendar%2Fcalendar_data.php;h=705e8a7168adce2782369bc4e57eae664a4ee470;hb=ea5f4b8eaf805c4cc4e9533e87d057300a7fe666;hp=053d4891d3aab45f1ac5d4f3782499277d4acea7;hpb=96d985e56dd20e2045e07673fc42e1ad908b398e;p=squirrelmail.git diff --git a/plugins/calendar/calendar_data.php b/plugins/calendar/calendar_data.php index 053d4891..705e8a71 100644 --- a/plugins/calendar/calendar_data.php +++ b/plugins/calendar/calendar_data.php @@ -11,18 +11,22 @@ * functions to operate on calendar data files. * * $Id$ + * @package plugins + * @subpackage calendar */ -// this is array that contains all events -// it is three dimensional array with fallowing structure -// $calendardata[date][time] = array(length,priority,title,message); +/** this is array that contains all events + * it is three dimensional array with fallowing structure + * $calendardata[date][time] = array(length,priority,title,message); */ $calendardata = array(); -//read events into array -//data is | delimited, just like addresbook -//files are structured like this: -//date|time|length|priority|title|message); -//files are divide by year for performance increase +/** + * read events into array + * + * data is | delimited, just like addressbook + * files are structured like this: + * date|time|length|priority|title|message + * files are divided by year for performance increase */ function readcalendardata() { global $calendardata, $username, $data_dir, $year;