| 1 |
plik /home/salodz/public_html/library/Zend/Config/Ini.php w linijce 156 :
150: ...
151: parent::__construct($dataArray, $allowModifications);
152: } else {
153: if (!isset($preProcessedArray[$section])) {
154: /** @see Zend_Config_Exception */
155: require_once 'Zend/Config/Exception.php';
156: throw new Zend_Config_Exception("Section '$section' cannot be found in $filename"); 157: }
158: parent::__construct($this->_processExtends($preProcessedArray, $section), $allowModifications);
159: }
160:
161: $this->_loadedSection = $section;
162: ...
|
| 2 |
plik /home/salodz/public_html/library/PH/Controller/Standard/RssController.php w linijce 15 :
9: ...
10: protected $_model;
11:
12: public function indexAction()
13: {
14:
15: $config = new Zend_Config_Ini('../configs/rss.ini', 'rss'); 16: $this->_model = new $config->rss->table();
17:
18:
19: $data = $this->_model->getForRSS($config->rss->number);
20: //print_r($data);die();
21: ...
|
| 3 |
plik /home/salodz/public_html/library/Zend/Controller/Action.php w linijce 502 :
496: ...
497: // preDispatch() didn't change the action, so we can continue
498: if ($this->getInvokeArg('useCaseSensitiveActions') || in_array($action, get_class_methods($this))) {
499: if ($this->getInvokeArg('useCaseSensitiveActions')) {
500: trigger_error('Using case sensitive actions without word separators is deprecated; please do not rely on this "feature"');
501: }
502: $this->$action(); 503: } else {
504: $this->__call($action, array());
505: }
506: $this->postDispatch();
507: }
508: ...
|
| 4 |
plik /home/salodz/public_html/library/Zend/Controller/Dispatcher/Standard.php w linijce 293 :
287: ...
288: if (empty($disableOb)) {
289: ob_start();
290: }
291:
292: try {
293: $controller->dispatch($action); 294: } catch (Exception $e) {
295: // Clean output buffer on error
296: $curObLevel = ob_get_level();
297: if ($curObLevel > $obLevel) {
298: do {
299: ...
|
| 5 |
plik /home/salodz/public_html/library/Zend/Controller/Front.php w linijce 914 :
908: ...
909:
910: /**
911: * Dispatch request
912: */
913: try {
914: $dispatcher->dispatch($this->_request, $this->_response); 915: } catch (Exception $e) {
916: if ($this->throwExceptions()) {
917: throw $e;
918: }
919: $this->_response->setException($e);
920: ...
|
| 6 |
plik /home/salodz/public_html/lodz.sa.gov.pl/index.php w linijce 225 :
219: ...
220: }
221: }
222: return $translate;
223: }
224:
225: $front->dispatch(); 226:
|