Change date and time to 15mins/per option

Permalink
Hi,
Does anyone know that where is the file stored to change the "Date and Time" of the form block? I'd like the minute options to be changed from every minute to every 15 minutes. Would be appreciate if you can let me now. Many thanks.

Ivy

 
shahroq replied on at Permalink Reply
shahroq
/concrete/core/helpers/form/date_time.php
method->public function datetime()
shahroq replied on at Permalink Best Answer Reply
shahroq
for changing minute option change this line (line 129):
$html .= '<option value="' . sprintf('%02d', $i) . '" ' . $selected . '>' . sprintf('%02d', $i) . '</option>';

to :
$html .= ($i%15==0)?'<option value="' . sprintf('%02d', $i) . '" ' . $selected . '>' . sprintf('%02d', $i) . '</option>':'';

just bear in mind, i'm not sure, but it may affect on other blocks behavior too.
amazeDesign replied on at Permalink Reply
Thanks so much. It works. Luck enough that this code is not effect on other block behavior.