- FICHEIRO: E:\bctl\views\Portfolio\chart-exchange-rate2.tpl
- LINHA: 266
- MENSAGEM: Undefined offset: 0
- 262. switch($i)
- 263. {
- 264. case '0':
- 265. $legend[] = translate('IDR/USD(right axis)');
- 266. $data[] = $points[0][0];
- 267.
- 268. $legend[] = translate('AUD/USD');
- 269. $data[] = $points[0][1];
- 270.
- 271. $legend[] = translate('SGD/USD');
- FICHEIRO: E:\bctl\views\Portfolio\chart-exchange-rate2.tpl
- LINHA: 266
- 262. switch($i)
- 263. {
- 264. case '0':
- 265. $legend[] = translate('IDR/USD(right axis)');
- 266. $data[] = $points[0][0];
- 267.
- 268. $legend[] = translate('AUD/USD');
- 269. $data[] = $points[0][1];
- 270.
- 271. $legend[] = translate('SGD/USD');
- FICHEIRO: E:\bctl\library\Goweb\View.php
- LINHA: 49
- 45. extract(get_object_vars($this));
- 46. if ($this->_useViewStream && $this->useStreamWrapper()) {
- 47. include 'zend.view://' . func_get_arg(0);
- 48. } else {
- 49. include func_get_arg(0);
- 50. }
- 51. }
- 52.
- 53. /**
- 54. * Escapes a value for output in a view script.
- FICHEIRO: E:\bctl\library\Zend\View\Abstract.php
- LINHA: 888
- 884. $this->_file = $this->_script($name);
- 885. unset($name); // remove $name from local scope
- 886.
- 887. ob_start();
- 888. $this->_run($this->_file);
- 889.
- 890. return $this->_filter(ob_get_clean()); // filter output
- 891. }
- 892.
- 893. /**
- FICHEIRO: E:\bctl\application\Cms\GenericController.php
- LINHA: 2252
- 2248. */
- 2249. $session = Goweb::registry('session');
- 2250. $view->id = $session->lastId;
- 2251. $view->titulo = $titulo;
- 2252. $view->output = $view->render($template);
- 2253. $view->setViewsPath(VIEWS_PATH);
- 2254. if ($print)
- 2255. $canal = 'print.tpl';
- 2256. $viewRenderer->setRender(str_replace('.' . $viewRenderer->getViewSuffix(), '', $canal));
- 2257. }
- FICHEIRO: E:\bctl\application\Portfolio\Controller.php
- LINHA: 4844
- 4840. 'chart-exchange-rate2.tpl',
- 4841. 'Destaque',
- 4842. 'mapa-detail',
- 4843. translate('Chart'),
- 4844. $this->_getParam('print'));
- 4845. $this->_helper->viewRenderer->setRender('base');
- 4846. } else {
- 4847. $this->_helper->viewRenderer->setRender('chart-exchange-rate2');
- 4848. }
- 4849.
- FICHEIRO: E:\bctl\library\Goweb\Controller\Action.php
- LINHA: 276
- 272. */
- 273. /*if ($this->getInvokeArg('useCaseSensitiveActions')) {
- 274. trigger_error('Using case sensitive actions without word separators is deprecated; please do not rely on this "feature"');
- 275. }*/
- 276. $this->$action();
- 277. } else {
- 278. $this->__call($action, array());
- 279. }
- 280. $this->postDispatch();
- 281. }
- FICHEIRO: E:\bctl\library\Zend\Controller\Dispatcher\Standard.php
- LINHA: 308
- 304. ob_start();
- 305. }
- 306.
- 307. try {
- 308. $controller->dispatch($action);
- 309. } catch (Exception $e) {
- 310. // Clean output buffer on error
- 311. $curObLevel = ob_get_level();
- 312. if ($curObLevel > $obLevel) {
- 313. do {
- FICHEIRO: E:\bctl\library\Zend\Controller\Front.php
- LINHA: 954
- 950. /**
- 951. * Dispatch request
- 952. */
- 953. try {
- 954. $dispatcher->dispatch($this->_request, $this->_response);
- 955. } catch (Exception $e) {
- 956. if ($this->throwExceptions()) {
- 957. throw $e;
- 958. }
- 959. $this->_response->setException($e);
- FICHEIRO: E:\bctl\library\Goweb\Application.php
- LINHA: 449
- 445. }
- 446.
- 447. public function runApp(){
- 448. $frontController = Zend_Controller_Front::getInstance();
- 449. $frontController->dispatch();
- 450. }
- 451. }
- FICHEIRO: E:\bctl\public_html\index.php
- LINHA: 54
- 50. $application->initPainel();
- 51. $lang = isset($_GET['lang']) ? $_GET['lang'] : null;
- 52. $application->initLanguage($lang, true, false);
- 53. $application->initLanguageAdmin($lang, true, true);
- 54. $application->runApp();
- 55.
- 56.
- 57. /**
- 58. * Efectua a traducao de uma string.
- 59. */