Modifying Conference Schedule year to show the years before the current year in the OCS system?

Hi @Murillo_Roseno,

OCS tries to determine the outside dates for the conference and uses those for the year drop-downs. If you need more options, you can edit classes/manager/form/TimelineForm.inc.php, find the getOutsideDates function, and hard-code it to return something broader, e.g.:

return array(
    strtotime('2005-01-01'), // Earliest date
    time() + (60 * 60 * 24 * 366 * 2) // Latest date: 2 years from now
);

(I haven’t tested this specifically, but it should work.)

Regards,
Alec Smecher
Public Knowledge Project Team

Thanks for the help.