Merge branch '2.1.x' of dev.sourcefabric.org:airtime into 2.1.x
This commit is contained in:
commit
0d770e55ef
|
@ -53,7 +53,7 @@ class Application_Common_DateHelper
|
||||||
*/
|
*/
|
||||||
function getWeekStartDate()
|
function getWeekStartDate()
|
||||||
{
|
{
|
||||||
$startDate = date('w') == 0 ? date('Y-m-d') : date('Y-m-d', strtotime('last sunday'));
|
$startDate = date('w') == 0 ? date('Y-m-d') : date('Y-m-d', strtotime('monday'));
|
||||||
$startDateTime = new DateTime($startDate);
|
$startDateTime = new DateTime($startDate);
|
||||||
return $startDateTime->format('Y-m-d H:i:s');
|
return $startDateTime->format('Y-m-d H:i:s');
|
||||||
}
|
}
|
||||||
|
|
|
@ -302,7 +302,7 @@ class ApiController extends Zend_Controller_Action
|
||||||
$dayStart = $date->getWeekStartDate();
|
$dayStart = $date->getWeekStartDate();
|
||||||
$utcDayStart = Application_Common_DateHelper::ConvertToUtcDateTimeString($dayStart);
|
$utcDayStart = Application_Common_DateHelper::ConvertToUtcDateTimeString($dayStart);
|
||||||
|
|
||||||
$dow = array("sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday");
|
$dow = array("monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday");
|
||||||
|
|
||||||
$result = array();
|
$result = array();
|
||||||
for ($i=0; $i<7; $i++){
|
for ($i=0; $i<7; $i++){
|
||||||
|
|
|
@ -175,7 +175,18 @@ class Application_Model_Preference
|
||||||
if ($fade === "") {
|
if ($fade === "") {
|
||||||
// the default value of the fade is 00.500000
|
// the default value of the fade is 00.500000
|
||||||
return "00.500000";
|
return "00.500000";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// we need this function to work with 2.0 version on default_fade value in cc_pref
|
||||||
|
// it has 00:00:00.000000 format where in 2.1 we have 00.000000 format
|
||||||
|
if(preg_match("/([0-9]{2}):([0-9]{2}):([0-9]{2}).([0-9]{6})/", $fade, $matches) == 1 && count($matches) == 5){
|
||||||
|
$out = 0;
|
||||||
|
$out += intval($matches[1] * 3600);
|
||||||
|
$out += intval($matches[2] * 60);
|
||||||
|
$out += intval($matches[3]);
|
||||||
|
$out .= ".$matches[4]";
|
||||||
|
$fade = $out;
|
||||||
|
}
|
||||||
|
|
||||||
$fade = number_format($fade, 6);
|
$fade = number_format($fade, 6);
|
||||||
//fades need 2 leading zeros for DateTime conversion
|
//fades need 2 leading zeros for DateTime conversion
|
||||||
|
|
Loading…
Reference in New Issue