Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 15797 | Rev 15799 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 15797 Rev 15798
Línea 90... Línea 90...
90
                }
90
                }
91
            }
91
            }
92
        }
92
        }
Línea 93... Línea 93...
93
 
93
 
-
 
94
        //if ($isJson) {
-
 
95
        $startDate = $this->params()->fromQuery('startDate');
-
 
96
        if (empty($startDate)) {
-
 
97
            $startDate = date('Y-m-d');
-
 
98
        }
-
 
99
 
-
 
100
 
-
 
101
        $endDate = $this->params()->fromQuery('endDate');
-
 
102
        if (empty($endDate)) {
-
 
103
            $endDate = date('Y-m-d');
94
        //if ($isJson) {
104
        }
95
        return new JsonModel([
105
        return new JsonModel([
96
            'success' => true,
106
            'success' => true,
97
            'message' => $headers
107
            'message' => $startDate
98
        ]);
108
        ]);
Línea 99... Línea 109...
99
        //}
109
        //}
100
 
110