APPPATH/src/Application/Model/ContaCategoria.php [ 30 ]
25 do {
26 $categoria = self::findById($id);
27
28 $arvore[$id] = $categoria;
29
30 $id = $categoria->parent ? $categoria->parent : false;
31 } while($id);
32
33 return $arvore;
34 }
35 }
-
APPPATH/src/Application/Model/ContaCategoria.php [ 30 ] » Kohana_Core::error_handler(arguments)
0
integer 8
1
string(36) "Trying to get property of non-object"
2
string(68) "/home/crorn2022/application/src/Application/Model/ContaCategoria.php"
3
integer 30
4
array(3) ( "id" => string(3) "407" "arvore" => array(1) ( 407 => NULL ) "categoria" => NULL )
25 do { 26 $categoria = self::findById($id); 27 28 $arvore[$id] = $categoria; 29 30 $id = $categoria->parent ? $categoria->parent : false; 31 } while($id); 32 33 return $arvore; 34 } 35 }
-
APPPATH/views/contas/index.php [ 285 ] » Application\Model\ContaCategoria::findArvoreByCategoria(arguments)
0
string(3) "407"
280 </ul> 281 282 </li> 283 </ul> 284 <!-- 285 <?php $arvore = $categoria ? \Application\Model\ContaCategoria::findArvoreByCategoria($categoria) : array(); ?> 286 287 288 289 <ul id="categorias"> 290 <?php foreach ($categorias as $data) : ?>
-
MODPATH/base/classes/View.php [ 158 ] » include(arguments)
0
string(50) "/home/crorn2022/application/views/contas/index.php"
153 ob_start(); 154 155 try 156 { 157 // Load the view within the current scope 158 include $kohana_view_filename; 159 } 160 catch (Exception $e) 161 { 162 // Delete the output buffer 163 ob_end_clean();
-
MODPATH/base/classes/View.php [ 73 ] » View->viewCapture(arguments)
0
string(50) "/home/crorn2022/application/views/contas/index.php"
1
array(5) ( "categorias" => array(7) ( 0 => array(4) ( "id_accounts_categories" => string(2) "13" "name" => string(6) "CRO-RN" "parent" => NULL "ordem" => string(1) "1" ) 1 => array(4) ( "id_accounts_categories" => string(2) "12" "name" => string(4) "Atas" "parent" => NULL "ordem" => string(1) "2" ) 2 => array(4) ( "id_accounts_categories" => string(2) "11" "name" => string(35) "Gestão Orçamentária e Financeira" "parent" => NULL "ordem" => string(1) "3" ) 3 => array(4) ( "id_accounts_categories" => string(2) "47" "name" => string(12) "Licitações" "parent" => NULL "ordem" => string(1) "4" ) 4 => array(4) ( "id_accounts_categories" => string(2) "51" "name" => string(22) "Contratos e Convênios" "parent" => NULL "ordem" => string(1) "5" ) 5 => array(4) ( "id_accounts_categories" => string(1) "9" "name" => string(16) "Recursos Humanos" "parent" => NULL "ordem" => string(1) "6" ) 6 => array(4) ( "id_accounts_categories" => string(1) "8" "name" => string(24) "Informação ao Cidadão" "parent" => NULL "ordem" => string(1) "7" ) ) "categoria" => string(3) "407" "contas" => array(0) "totalPages" => integer 0 "page" => integer 1 )
68 69 if (empty($this->_file)) { 70 throw new \View_Exception('You must set the file to use within your view before rendering'); 71 } 72 73 $content = $this->viewCapture($this->_file, $this->_data); 74 if ($this->hasLayout()) { 75 $contentLayout = $this->layout; 76 $this->setLayout(null); 77 $this->setContent($content); 78 $content = $this->render($contentLayout);
-
/home/crorn2022/src/Mix/Controller/Controller.php [ 91 ] » View->render()
86 * @param array $data 87 * @return string 88 */ 89 public function renderView($view, $data = array()) 90 { 91 return $this->createView($view, $data)->render(); 92 } 93 94 /** 95 * 96 * @param string $view
-
/home/crorn2022/src/Mix/Controller/Controller.php [ 103 ] » Mix\Controller\Controller->renderView(arguments)
0
string(12) "contas/index"
1
array(5) ( "categorias" => array(7) ( 0 => array(4) ( "id_accounts_categories" => string(2) "13" "name" => string(6) "CRO-RN" "parent" => NULL "ordem" => string(1) "1" ) 1 => array(4) ( "id_accounts_categories" => string(2) "12" "name" => string(4) "Atas" "parent" => NULL "ordem" => string(1) "2" ) 2 => array(4) ( "id_accounts_categories" => string(2) "11" "name" => string(35) "Gestão Orçamentária e Financeira" "parent" => NULL "ordem" => string(1) "3" ) 3 => array(4) ( "id_accounts_categories" => string(2) "47" "name" => string(12) "Licitações" "parent" => NULL "ordem" => string(1) "4" ) 4 => array(4) ( "id_accounts_categories" => string(2) "51" "name" => string(22) "Contratos e Convênios" "parent" => NULL "ordem" => string(1) "5" ) 5 => array(4) ( "id_accounts_categories" => string(1) "9" "name" => string(16) "Recursos Humanos" "parent" => NULL "ordem" => string(1) "6" ) 6 => array(4) ( "id_accounts_categories" => string(1) "8" "name" => string(24) "Informação ao Cidadão" "parent" => NULL "ordem" => string(1) "7" ) ) "categoria" => string(3) "407" "contas" => array(0) "totalPages" => integer 0 "page" => integer 1 )
98 * @return Response 99 */ 100 public function renderResponse($view, $data = array()) 101 { 102 $response = new Response(); 103 $response->setContent($this->renderView($view, $data)); 104 return $response; 105 } 106 107 /** 108 * @param string $url
-
APPPATH/src/Application/Controller/ContasController.php [ 33 ] » Mix\Controller\Controller->renderResponse(arguments)
0
string(12) "contas/index"
1
array(5) ( "categorias" => array(7) ( 0 => array(4) ( "id_accounts_categories" => string(2) "13" "name" => string(6) "CRO-RN" "parent" => NULL "ordem" => string(1) "1" ) 1 => array(4) ( "id_accounts_categories" => string(2) "12" "name" => string(4) "Atas" "parent" => NULL "ordem" => string(1) "2" ) 2 => array(4) ( "id_accounts_categories" => string(2) "11" "name" => string(35) "Gestão Orçamentária e Financeira" "parent" => NULL "ordem" => string(1) "3" ) 3 => array(4) ( "id_accounts_categories" => string(2) "47" "name" => string(12) "Licitações" "parent" => NULL "ordem" => string(1) "4" ) 4 => array(4) ( "id_accounts_categories" => string(2) "51" "name" => string(22) "Contratos e Convênios" "parent" => NULL "ordem" => string(1) "5" ) 5 => array(4) ( "id_accounts_categories" => string(1) "9" "name" => string(16) "Recursos Humanos" "parent" => NULL "ordem" => string(1) "6" ) 6 => array(4) ( "id_accounts_categories" => string(1) "8" "name" => string(24) "Informação ao Cidadão" "parent" => NULL "ordem" => string(1) "7" ) ) "categoria" => string(3) "407" "contas" => array(0) "totalPages" => integer 0 "page" => integer 1 )
28 'contas' => $contas, 29 'totalPages' => isset($totalPages) ? $totalPages : 0, 30 'page' => $page 31 ); 32 33 return $this->renderResponse('contas/index', $data); 34 } 35 }
-
{PHP internal call} » Application\Controller\ContasController->indexAction(arguments)
0
string(3) "407"
1
integer 1
-
/home/crorn2022/src/Mix/Application.php [ 217 ] » call_user_func_array(arguments)
function_name
array(2) ( 0 => object Application\Controller\ContasController(5)
{ protected layout => string(12) "layouts/site" protected ui => object Mix\UiManager(11)
1 => string(11) "indexAction" ){ protected projectName => NULL protected menus => array(0) protected pageTitle => NULL protected pageDescription => NULL protected breadCrumb => array(0) protected tabs => array(0) protected activeMenu => NULL protected activeSubmenu => NULL protected pageActions => array(0) protected username => NULL protected userActions => NULL }
protected db => object Doctrine\DBAL\Connection(15){ protected _conn => object Doctrine\DBAL\Driver\PDOConnection(0)
protected application => object Application(7){ }
protected _config => object Doctrine\DBAL\Configuration(1){ protected _attributes => array(0) }
protected _eventManager => object Doctrine\Common\EventManager(1){ private _listeners => array(0) }
protected _expr => object Doctrine\DBAL\Query\Expression\ExpressionBuilder(1){ private connection => object Doctrine\DBAL\Connection(15) { *RECURSION* } }
private _isConnected => bool TRUE private autoCommit => bool TRUE private _transactionNestingLevel => integer 0 private _transactionIsolationLevel => NULL private _nestTransactionsWithSavepoints => bool FALSE private _params => array(6) ( "dbname" => string(12) "crorn_site22" "user" => string(7) "crorn22" "password" => string(12) "FwuQ87hIwuO3" "host" => string(28) "mysql.crorn.dreamhosters.com" "driver" => string(9) "pdo_mysql" "charset" => string(4) "utf8" ) private platform => object Doctrine\DBAL\Platforms\MySQL57Platform(4){ protected doctrineTypeMapping => NULL protected doctrineTypeComments => NULL protected _eventManager => object Doctrine\Common\EventManager(1)
protected _schemaManager => NULL protected _driver => object Doctrine\DBAL\Driver\PDOMySql\Driver(0){ private _listeners => array(0) }
protected _keywords => NULL }{ }
private _isRollbackOnly => bool FALSE protected defaultFetchMode => integer 2 }{ protected modules => array(0) private values => array(13) ( "config" => object Config(2)
protected request => object Symfony\Component\HttpFoundation\Request(21){ protected _sources => array(1) ( 0 => object Config_File(1)
"environment" => integer 10 "default_connection_name" => string(10) "production" "connection_params" => array(6) ( "dbname" => string(12) "crorn_site22" "user" => string(7) "crorn22" "password" => string(12) "FwuQ87hIwuO3" "host" => string(28) "mysql.crorn.dreamhosters.com" "driver" => string(9) "pdo_mysql" "charset" => string(4) "utf8" ) "db_configuration" => object Doctrine\DBAL\Configuration(1){ protected _directory => string(6) "config" }
) protected _groups => array(1) ( "database" => object Config_Group(2){ public production => array(6) ( "dbname" => string(12) "crorn_site22" "user" => string(7) "crorn22" "password" => string(12) "FwuQ87hIwuO3" "host" => string(28) "mysql.crorn.dreamhosters.com" "driver" => string(9) "pdo_mysql" "charset" => string(4) "utf8" ) public development => array(6) ( "dbname" => string(12) "crorn_site22" "user" => string(7) "crorn22" "password" => string(12) "FwuQ87hIwuO3" "host" => string(28) "mysql.crorn.dreamhosters.com" "driver" => string(9) "pdo_mysql" "charset" => string(4) "utf8" ) }
) }{ protected _attributes => array(0) }
"db" => object Doctrine\DBAL\Connection(15){ protected _conn => object Doctrine\DBAL\Driver\PDOConnection(0)
"ui" => object Mix\UiManager(11){ }
protected _config => object Doctrine\DBAL\Configuration(1){ protected _attributes => array(0) }
protected _eventManager => object Doctrine\Common\EventManager(1){ private _listeners => array(0) }
protected _expr => object Doctrine\DBAL\Query\Expression\ExpressionBuilder(1){ private connection => object Doctrine\DBAL\Connection(15) { *RECURSION* } }
private _isConnected => bool TRUE private autoCommit => bool TRUE private _transactionNestingLevel => integer 0 private _transactionIsolationLevel => NULL private _nestTransactionsWithSavepoints => bool FALSE private _params => array(6) ( "dbname" => string(12) "crorn_site22" "user" => string(7) "crorn22" "password" => string(12) "FwuQ87hIwuO3" "host" => string(28) "mysql.crorn.dreamhosters.com" "driver" => string(9) "pdo_mysql" "charset" => string(4) "utf8" ) private platform => object Doctrine\DBAL\Platforms\MySQL57Platform(4){ protected doctrineTypeMapping => NULL protected doctrineTypeComments => NULL protected _eventManager => object Doctrine\Common\EventManager(1)
protected _schemaManager => NULL protected _driver => object Doctrine\DBAL\Driver\PDOMySql\Driver(0){ private _listeners => array(0) }
protected _keywords => NULL }{ }
private _isRollbackOnly => bool FALSE protected defaultFetchMode => integer 2 }{ protected projectName => NULL protected menus => array(0) protected pageTitle => NULL protected pageDescription => NULL protected breadCrumb => array(0) protected tabs => array(0) protected activeMenu => NULL protected activeSubmenu => NULL protected pageActions => array(0) protected username => NULL protected userActions => NULL }
"db.production" => object Closure(1){ public 0 => object Closure(1) { *RECURSION* } }
"db.development" => object Closure(1){ public 0 => object Closure(1) { *RECURSION* } }
"session" => object Closure(1){ public 0 => object Closure(1) { *RECURSION* } }
"mailer" => object Closure(1){ public 0 => object Closure(1) { *RECURSION* } }
"master_request" => object Symfony\Component\HttpFoundation\Request(21){ public attributes => object Symfony\Component\HttpFoundation\ParameterBag(1)
"current_request" => object Symfony\Component\HttpFoundation\Request(21){ protected parameters => array(4) ( "_controller" => string(52) "Application\Controller\ContasController::indexAction" "_route" => string(12) "contas.index" "categoria" => string(3) "407" "application" => object Application(7) { *RECURSION* } ) }
public request => object Symfony\Component\HttpFoundation\ParameterBag(1){ protected parameters => array(0) }
public query => object Symfony\Component\HttpFoundation\ParameterBag(1){ protected parameters => array(1) ( "q" => string(10) "contas/407" ) }
public server => object Symfony\Component\HttpFoundation\ServerBag(1){ protected parameters => array(57) ( "PATH" => string(60) "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" "CONTENT_LENGTH" => string(1) "0" "SCRIPT_NAME" => string(10) "/index.php" "REQUEST_URI" => string(11) "/contas/407" "QUERY_STRING" => string(12) "q=contas/407" "REQUEST_METHOD" => string(3) "GET" "SERVER_PROTOCOL" => string(8) "HTTP/1.1" "GATEWAY_INTERFACE" => string(7) "CGI/1.1" "REDIRECT_QUERY_STRING" => string(12) "q=contas/407" "REDIRECT_URL" => string(11) "/contas/407" "REMOTE_PORT" => string(5) "48524" "SCRIPT_FILENAME" => string(38) "/home/crorn2022/crorn.org.br/index.php" "SERVER_ADMIN" => string(22) "webmaster@crorn.org.br" "CONTEXT_DOCUMENT_ROOT" => string(28) "/home/crorn2022/crorn.org.br" "CONTEXT_PREFIX" => string(0) "" "REQUEST_SCHEME" => string(5) "https" "DOCUMENT_ROOT" => string(28) "/home/crorn2022/crorn.org.br" "REMOTE_ADDR" => string(14) "34.239.148.127" "SERVER_PORT" => string(3) "443" "SERVER_ADDR" => string(15) "173.236.201.194" "SERVER_NAME" => string(16) "www.crorn.org.br" "SERVER_SOFTWARE" => string(6) "Apache" "SERVER_SIGNATURE" => string(0) "" "HTTP_CONNECTION" => string(5) "close" "HTTP_HOST" => string(16) "www.crorn.org.br" "HTTP_ACCEPT_ENCODING" => string(7) "br,gzip" "HTTP_IF_MODIFIED_SINCE" => string(29) "Fri, 31 Mar 2023 06:21:02 GMT" "HTTP_ACCEPT_LANGUAGE" => string(14) "en-US,en;q=0.5" "HTTP_ACCEPT" => string(63) "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" "HTTP_USER_AGENT" => string(40) "CCBot/2.0 (https://commoncrawl.org/faq/)" "SSL_TLS_SNI" => string(16) "www.crorn.org.br" "HTTPS" => string(2) "on" "DH_USER" => string(9) "crorn2022" "ds_id_45589340" => string(0) "" "dsid" => string(8) "45589340" "SCRIPT_URI" => string(35) "https://www.crorn.org.br/contas/407" "SCRIPT_URL" => string(11) "/contas/407" "QS_ConnectionId" => string(23) "16960182743742476485857" "QS_AllConn" => string(1) "3" "QS_SrvConn" => string(1) "3" "UNIQUE_ID" => string(27) "ZRcvYmrxvmZfAWW6QT6wtQAAJ7Q" "REDIRECT_STATUS" => string(3) "200" "REDIRECT_SSL_TLS_SNI" => string(16) "www.crorn.org.br" "REDIRECT_HTTPS" => string(2) "on" "REDIRECT_DH_USER" => string(9) "crorn2022" "REDIRECT_ds_id_45589340" => string(0) "" "REDIRECT_dsid" => string(8) "45589340" "REDIRECT_SCRIPT_URI" => string(35) "https://www.crorn.org.br/contas/407" "REDIRECT_SCRIPT_URL" => string(11) "/contas/407" "REDIRECT_QS_ConnectionId" => string(23) "16960182743742476485857" "REDIRECT_QS_AllConn" => string(1) "3" "REDIRECT_QS_SrvConn" => string(1) "3" "REDIRECT_UNIQUE_ID" => string(27) "ZRcvYmrxvmZfAWW6QT6wtQAAJ7Q" "FCGI_ROLE" => string(9) "RESPONDER" "PHP_SELF" => string(10) "/index.php" "REQUEST_TIME_FLOAT" => float 1696018274.3771 "REQUEST_TIME" => integer 1696018274 ) }
public files => object Symfony\Component\HttpFoundation\FileBag(1){ protected parameters => array(0) }
public cookies => object Symfony\Component\HttpFoundation\ParameterBag(1){ protected parameters => array(0) }
public headers => object Symfony\Component\HttpFoundation\HeaderBag(2){ protected headers => array(8) ( "content-length" => array(1) ( 0 => string(1) "0" ) "connection" => array(1) ( 0 => string(5) "close" ) "host" => array(1) ( 0 => string(16) "www.crorn.org.br" ) "accept-encoding" => array(1) ( 0 => string(7) "br,gzip" ) "if-modified-since" => array(1) ( 0 => string(29) "Fri, 31 Mar 2023 06:21:02 GMT" ) "accept-language" => array(1) ( 0 => string(14) "en-US,en;q=0.5" ) "accept" => array(1) ( 0 => string(63) "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" ) "user-agent" => array(1) ( 0 => string(40) "CCBot/2.0 (https://commoncrawl.org/faq/)" ) ) protected cacheControl => array(0) }
protected content => NULL protected languages => NULL protected charsets => NULL protected encodings => NULL protected acceptableContentTypes => NULL protected pathInfo => string(11) "/contas/407" protected requestUri => string(11) "/contas/407" protected baseUrl => string(0) "" protected basePath => NULL protected method => NULL protected format => NULL protected session => NULL protected locale => NULL protected defaultLocale => string(2) "en" }{ public attributes => object Symfony\Component\HttpFoundation\ParameterBag(1)
) private factories => NULL private protected => NULL private frozen => array(6) ( "config" => bool TRUE "ui" => bool TRUE "default_connection_name" => bool TRUE "connection_params" => bool TRUE "db_configuration" => bool TRUE "db" => bool TRUE ) private raw => array(6) ( "config" => object Closure(1){ protected parameters => array(4) ( "_controller" => string(52) "Application\Controller\ContasController::indexAction" "_route" => string(12) "contas.index" "categoria" => string(3) "407" "application" => object Application(7) { *RECURSION* } ) }
public request => object Symfony\Component\HttpFoundation\ParameterBag(1){ protected parameters => array(0) }
public query => object Symfony\Component\HttpFoundation\ParameterBag(1){ protected parameters => array(1) ( "q" => string(10) "contas/407" ) }
public server => object Symfony\Component\HttpFoundation\ServerBag(1){ protected parameters => array(57) ( "PATH" => string(60) "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" "CONTENT_LENGTH" => string(1) "0" "SCRIPT_NAME" => string(10) "/index.php" "REQUEST_URI" => string(11) "/contas/407" "QUERY_STRING" => string(12) "q=contas/407" "REQUEST_METHOD" => string(3) "GET" "SERVER_PROTOCOL" => string(8) "HTTP/1.1" "GATEWAY_INTERFACE" => string(7) "CGI/1.1" "REDIRECT_QUERY_STRING" => string(12) "q=contas/407" "REDIRECT_URL" => string(11) "/contas/407" "REMOTE_PORT" => string(5) "48524" "SCRIPT_FILENAME" => string(38) "/home/crorn2022/crorn.org.br/index.php" "SERVER_ADMIN" => string(22) "webmaster@crorn.org.br" "CONTEXT_DOCUMENT_ROOT" => string(28) "/home/crorn2022/crorn.org.br" "CONTEXT_PREFIX" => string(0) "" "REQUEST_SCHEME" => string(5) "https" "DOCUMENT_ROOT" => string(28) "/home/crorn2022/crorn.org.br" "REMOTE_ADDR" => string(14) "34.239.148.127" "SERVER_PORT" => string(3) "443" "SERVER_ADDR" => string(15) "173.236.201.194" "SERVER_NAME" => string(16) "www.crorn.org.br" "SERVER_SOFTWARE" => string(6) "Apache" "SERVER_SIGNATURE" => string(0) "" "HTTP_CONNECTION" => string(5) "close" "HTTP_HOST" => string(16) "www.crorn.org.br" "HTTP_ACCEPT_ENCODING" => string(7) "br,gzip" "HTTP_IF_MODIFIED_SINCE" => string(29) "Fri, 31 Mar 2023 06:21:02 GMT" "HTTP_ACCEPT_LANGUAGE" => string(14) "en-US,en;q=0.5" "HTTP_ACCEPT" => string(63) "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" "HTTP_USER_AGENT" => string(40) "CCBot/2.0 (https://commoncrawl.org/faq/)" "SSL_TLS_SNI" => string(16) "www.crorn.org.br" "HTTPS" => string(2) "on" "DH_USER" => string(9) "crorn2022" "ds_id_45589340" => string(0) "" "dsid" => string(8) "45589340" "SCRIPT_URI" => string(35) "https://www.crorn.org.br/contas/407" "SCRIPT_URL" => string(11) "/contas/407" "QS_ConnectionId" => string(23) "16960182743742476485857" "QS_AllConn" => string(1) "3" "QS_SrvConn" => string(1) "3" "UNIQUE_ID" => string(27) "ZRcvYmrxvmZfAWW6QT6wtQAAJ7Q" "REDIRECT_STATUS" => string(3) "200" "REDIRECT_SSL_TLS_SNI" => string(16) "www.crorn.org.br" "REDIRECT_HTTPS" => string(2) "on" "REDIRECT_DH_USER" => string(9) "crorn2022" "REDIRECT_ds_id_45589340" => string(0) "" "REDIRECT_dsid" => string(8) "45589340" "REDIRECT_SCRIPT_URI" => string(35) "https://www.crorn.org.br/contas/407" "REDIRECT_SCRIPT_URL" => string(11) "/contas/407" "REDIRECT_QS_ConnectionId" => string(23) "16960182743742476485857" "REDIRECT_QS_AllConn" => string(1) "3" "REDIRECT_QS_SrvConn" => string(1) "3" "REDIRECT_UNIQUE_ID" => string(27) "ZRcvYmrxvmZfAWW6QT6wtQAAJ7Q" "FCGI_ROLE" => string(9) "RESPONDER" "PHP_SELF" => string(10) "/index.php" "REQUEST_TIME_FLOAT" => float 1696018274.3771 "REQUEST_TIME" => integer 1696018274 ) }
public files => object Symfony\Component\HttpFoundation\FileBag(1){ protected parameters => array(0) }
public cookies => object Symfony\Component\HttpFoundation\ParameterBag(1){ protected parameters => array(0) }
public headers => object Symfony\Component\HttpFoundation\HeaderBag(2){ protected headers => array(8) ( "content-length" => array(1) ( 0 => string(1) "0" ) "connection" => array(1) ( 0 => string(5) "close" ) "host" => array(1) ( 0 => string(16) "www.crorn.org.br" ) "accept-encoding" => array(1) ( 0 => string(7) "br,gzip" ) "if-modified-since" => array(1) ( 0 => string(29) "Fri, 31 Mar 2023 06:21:02 GMT" ) "accept-language" => array(1) ( 0 => string(14) "en-US,en;q=0.5" ) "accept" => array(1) ( 0 => string(63) "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" ) "user-agent" => array(1) ( 0 => string(40) "CCBot/2.0 (https://commoncrawl.org/faq/)" ) ) protected cacheControl => array(0) }
protected content => NULL protected languages => NULL protected charsets => NULL protected encodings => NULL protected acceptableContentTypes => NULL protected pathInfo => string(11) "/contas/407" protected requestUri => string(11) "/contas/407" protected baseUrl => string(0) "" protected basePath => NULL protected method => NULL protected format => NULL protected session => NULL protected locale => NULL protected defaultLocale => string(2) "en" }{ public 0 => object Closure(1) { *RECURSION* } }
"ui" => object Closure(1){ public 0 => object Closure(1) { *RECURSION* } }
"default_connection_name" => object Closure(1){ public 0 => object Closure(1) { *RECURSION* } }
"connection_params" => object Closure(1){ public 0 => object Closure(1) { *RECURSION* } }
"db_configuration" => object Closure(1){ public 0 => object Closure(1) { *RECURSION* } }
"db" => object Closure(1){ public 0 => object Closure(1) { *RECURSION* } }
) private keys => array(13) ( "config" => bool TRUE "environment" => bool TRUE "default_connection_name" => bool TRUE "connection_params" => bool TRUE "db_configuration" => bool TRUE "db" => bool TRUE "ui" => bool TRUE "db.production" => bool TRUE "db.development" => bool TRUE "session" => bool TRUE "mailer" => bool TRUE "master_request" => bool TRUE "current_request" => bool TRUE ) }{ public attributes => object Symfony\Component\HttpFoundation\ParameterBag(1)
}{ protected parameters => array(4) ( "_controller" => string(52) "Application\Controller\ContasController::indexAction" "_route" => string(12) "contas.index" "categoria" => string(3) "407" "application" => object Application(7)
public request => object Symfony\Component\HttpFoundation\ParameterBag(1){ protected modules => array(0) private values => array(13) ( "config" => object Config(2)
) }{ protected _sources => array(1) ( 0 => object Config_File(1)
"environment" => integer 10 "default_connection_name" => string(10) "production" "connection_params" => array(6) ( "dbname" => string(12) "crorn_site22" "user" => string(7) "crorn22" "password" => string(12) "FwuQ87hIwuO3" "host" => string(28) "mysql.crorn.dreamhosters.com" "driver" => string(9) "pdo_mysql" "charset" => string(4) "utf8" ) "db_configuration" => object Doctrine\DBAL\Configuration(1){ protected _directory => string(6) "config" }
) protected _groups => array(1) ( "database" => object Config_Group(2){ public production => array(6) ( ... ) public development => array(6) ( ... ) }
) }{ protected _attributes => array(0) }
"db" => object Doctrine\DBAL\Connection(15){ protected _conn => object Doctrine\DBAL\Driver\PDOConnection(0)
"ui" => object Mix\UiManager(11){ }
protected _config => object Doctrine\DBAL\Configuration(1){ protected _attributes => array(0) }
protected _eventManager => object Doctrine\Common\EventManager(1){ private _listeners => array(0) }
protected _expr => object Doctrine\DBAL\Query\Expression\ExpressionBuilder(1){ private connection => object Doctrine\DBAL\Connection(15) { *RECURSION* } }
private _isConnected => bool TRUE private autoCommit => bool TRUE private _transactionNestingLevel => integer 0 private _transactionIsolationLevel => NULL private _nestTransactionsWithSavepoints => bool FALSE private _params => array(6) ( "dbname" => string(12) "crorn_site22" "user" => string(7) "crorn22" "password" => string(12) "FwuQ87hIwuO3" "host" => string(28) "mysql.crorn.dreamhosters.com" "driver" => string(9) "pdo_mysql" "charset" => string(4) "utf8" ) private platform => object Doctrine\DBAL\Platforms\MySQL57Platform(4){ protected doctrineTypeMapping => NULL protected doctrineTypeComments => NULL protected _eventManager => object Doctrine\Common\EventManager(1)
protected _schemaManager => NULL protected _driver => object Doctrine\DBAL\Driver\PDOMySql\Driver(0){ private _listeners => array(0) }
protected _keywords => NULL }{ }
private _isRollbackOnly => bool FALSE protected defaultFetchMode => integer 2 }{ protected projectName => NULL protected menus => array(0) protected pageTitle => NULL protected pageDescription => NULL protected breadCrumb => array(0) protected tabs => array(0) protected activeMenu => NULL protected activeSubmenu => NULL protected pageActions => array(0) protected username => NULL protected userActions => NULL }
"db.production" => object Closure(1){ public 0 => object Closure(1) { *RECURSION* } }
"db.development" => object Closure(1){ public 0 => object Closure(1) { *RECURSION* } }
"session" => object Closure(1){ public 0 => object Closure(1) { *RECURSION* } }
"mailer" => object Closure(1){ public 0 => object Closure(1) { *RECURSION* } }
"master_request" => object Symfony\Component\HttpFoundation\Request(21) { *RECURSION* } "current_request" => object Symfony\Component\HttpFoundation\Request(21) { *RECURSION* } ) private factories => NULL private protected => NULL private frozen => array(6) ( "config" => bool TRUE "ui" => bool TRUE "default_connection_name" => bool TRUE "connection_params" => bool TRUE "db_configuration" => bool TRUE "db" => bool TRUE ) private raw => array(6) ( "config" => object Closure(1){ public 0 => object Closure(1) { *RECURSION* } }
"ui" => object Closure(1){ public 0 => object Closure(1) { *RECURSION* } }
"default_connection_name" => object Closure(1){ public 0 => object Closure(1) { *RECURSION* } }
"connection_params" => object Closure(1){ public 0 => object Closure(1) { *RECURSION* } }
"db_configuration" => object Closure(1){ public 0 => object Closure(1) { *RECURSION* } }
"db" => object Closure(1){ public 0 => object Closure(1) { *RECURSION* } }
) private keys => array(13) ( "config" => bool TRUE "environment" => bool TRUE "default_connection_name" => bool TRUE "connection_params" => bool TRUE "db_configuration" => bool TRUE "db" => bool TRUE "ui" => bool TRUE "db.production" => bool TRUE "db.development" => bool TRUE "session" => bool TRUE "mailer" => bool TRUE "master_request" => bool TRUE "current_request" => bool TRUE ) }{ protected parameters => array(0) }
public query => object Symfony\Component\HttpFoundation\ParameterBag(1){ protected parameters => array(1) ( "q" => string(10) "contas/407" ) }
public server => object Symfony\Component\HttpFoundation\ServerBag(1){ protected parameters => array(57) ( "PATH" => string(60) "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" "CONTENT_LENGTH" => string(1) "0" "SCRIPT_NAME" => string(10) "/index.php" "REQUEST_URI" => string(11) "/contas/407" "QUERY_STRING" => string(12) "q=contas/407" "REQUEST_METHOD" => string(3) "GET" "SERVER_PROTOCOL" => string(8) "HTTP/1.1" "GATEWAY_INTERFACE" => string(7) "CGI/1.1" "REDIRECT_QUERY_STRING" => string(12) "q=contas/407" "REDIRECT_URL" => string(11) "/contas/407" "REMOTE_PORT" => string(5) "48524" "SCRIPT_FILENAME" => string(38) "/home/crorn2022/crorn.org.br/index.php" "SERVER_ADMIN" => string(22) "webmaster@crorn.org.br" "CONTEXT_DOCUMENT_ROOT" => string(28) "/home/crorn2022/crorn.org.br" "CONTEXT_PREFIX" => string(0) "" "REQUEST_SCHEME" => string(5) "https" "DOCUMENT_ROOT" => string(28) "/home/crorn2022/crorn.org.br" "REMOTE_ADDR" => string(14) "34.239.148.127" "SERVER_PORT" => string(3) "443" "SERVER_ADDR" => string(15) "173.236.201.194" "SERVER_NAME" => string(16) "www.crorn.org.br" "SERVER_SOFTWARE" => string(6) "Apache" "SERVER_SIGNATURE" => string(0) "" "HTTP_CONNECTION" => string(5) "close" "HTTP_HOST" => string(16) "www.crorn.org.br" "HTTP_ACCEPT_ENCODING" => string(7) "br,gzip" "HTTP_IF_MODIFIED_SINCE" => string(29) "Fri, 31 Mar 2023 06:21:02 GMT" "HTTP_ACCEPT_LANGUAGE" => string(14) "en-US,en;q=0.5" "HTTP_ACCEPT" => string(63) "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" "HTTP_USER_AGENT" => string(40) "CCBot/2.0 (https://commoncrawl.org/faq/)" "SSL_TLS_SNI" => string(16) "www.crorn.org.br" "HTTPS" => string(2) "on" "DH_USER" => string(9) "crorn2022" "ds_id_45589340" => string(0) "" "dsid" => string(8) "45589340" "SCRIPT_URI" => string(35) "https://www.crorn.org.br/contas/407" "SCRIPT_URL" => string(11) "/contas/407" "QS_ConnectionId" => string(23) "16960182743742476485857" "QS_AllConn" => string(1) "3" "QS_SrvConn" => string(1) "3" "UNIQUE_ID" => string(27) "ZRcvYmrxvmZfAWW6QT6wtQAAJ7Q" "REDIRECT_STATUS" => string(3) "200" "REDIRECT_SSL_TLS_SNI" => string(16) "www.crorn.org.br" "REDIRECT_HTTPS" => string(2) "on" "REDIRECT_DH_USER" => string(9) "crorn2022" "REDIRECT_ds_id_45589340" => string(0) "" "REDIRECT_dsid" => string(8) "45589340" "REDIRECT_SCRIPT_URI" => string(35) "https://www.crorn.org.br/contas/407" "REDIRECT_SCRIPT_URL" => string(11) "/contas/407" "REDIRECT_QS_ConnectionId" => string(23) "16960182743742476485857" "REDIRECT_QS_AllConn" => string(1) "3" "REDIRECT_QS_SrvConn" => string(1) "3" "REDIRECT_UNIQUE_ID" => string(27) "ZRcvYmrxvmZfAWW6QT6wtQAAJ7Q" "FCGI_ROLE" => string(9) "RESPONDER" "PHP_SELF" => string(10) "/index.php" "REQUEST_TIME_FLOAT" => float 1696018274.3771 "REQUEST_TIME" => integer 1696018274 ) }
public files => object Symfony\Component\HttpFoundation\FileBag(1){ protected parameters => array(0) }
public cookies => object Symfony\Component\HttpFoundation\ParameterBag(1){ protected parameters => array(0) }
public headers => object Symfony\Component\HttpFoundation\HeaderBag(2){ protected headers => array(8) ( "content-length" => array(1) ( 0 => string(1) "0" ) "connection" => array(1) ( 0 => string(5) "close" ) "host" => array(1) ( 0 => string(16) "www.crorn.org.br" ) "accept-encoding" => array(1) ( 0 => string(7) "br,gzip" ) "if-modified-since" => array(1) ( 0 => string(29) "Fri, 31 Mar 2023 06:21:02 GMT" ) "accept-language" => array(1) ( 0 => string(14) "en-US,en;q=0.5" ) "accept" => array(1) ( 0 => string(63) "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" ) "user-agent" => array(1) ( 0 => string(40) "CCBot/2.0 (https://commoncrawl.org/faq/)" ) ) protected cacheControl => array(0) }
protected content => NULL protected languages => NULL protected charsets => NULL protected encodings => NULL protected acceptableContentTypes => NULL protected pathInfo => string(11) "/contas/407" protected requestUri => string(11) "/contas/407" protected baseUrl => string(0) "" protected basePath => NULL protected method => NULL protected format => NULL protected session => NULL protected locale => NULL protected defaultLocale => string(2) "en" }parameters
array(2) ( 0 => string(3) "407" 1 => integer 1 )
212 213 if (method_exists($controller[0], 'before')) { 214 call_user_func(array($controller[0], 'before')); 215 } 216 217 $response = call_user_func_array($controller, $parameters); 218 219 if (method_exists($controller[0], 'after')) { 220 call_user_func(array($controller[0], 'after')); 221 } 222
-
/home/crorn2022/src/Mix/Application.php [ 255 ] » Mix\Application->handle(arguments)
0
object Symfony\Component\HttpFoundation\Request(21)
{ public attributes => object Symfony\Component\HttpFoundation\ParameterBag(1)
{ protected parameters => array(4) ( "_controller" => string(52) "Application\Controller\ContasController::indexAction" "_route" => string(12) "contas.index" "categoria" => string(3) "407" "application" => object Application(7)
public request => object Symfony\Component\HttpFoundation\ParameterBag(1){ protected modules => array(0) private values => array(13) ( "config" => object Config(2)
) }{ protected _sources => array(1) ( 0 => object Config_File(1)
"environment" => integer 10 "default_connection_name" => string(10) "production" "connection_params" => array(6) ( "dbname" => string(12) "crorn_site22" "user" => string(7) "crorn22" "password" => string(12) "FwuQ87hIwuO3" "host" => string(28) "mysql.crorn.dreamhosters.com" "driver" => string(9) "pdo_mysql" "charset" => string(4) "utf8" ) "db_configuration" => object Doctrine\DBAL\Configuration(1){ protected _directory => string(6) "config" }
) protected _groups => array(1) ( "database" => object Config_Group(2){ public production => array(6) ( "dbname" => string(12) "crorn_site22" "user" => string(7) "crorn22" "password" => string(12) "FwuQ87hIwuO3" "host" => string(28) "mysql.crorn.dreamhosters.com" "driver" => string(9) "pdo_mysql" "charset" => string(4) "utf8" ) public development => array(6) ( "dbname" => string(12) "crorn_site22" "user" => string(7) "crorn22" "password" => string(12) "FwuQ87hIwuO3" "host" => string(28) "mysql.crorn.dreamhosters.com" "driver" => string(9) "pdo_mysql" "charset" => string(4) "utf8" ) }
) }{ protected _attributes => array(0) }
"db" => object Doctrine\DBAL\Connection(15){ protected _conn => object Doctrine\DBAL\Driver\PDOConnection(0)
"ui" => object Mix\UiManager(11){ }
protected _config => object Doctrine\DBAL\Configuration(1){ protected _attributes => array(0) }
protected _eventManager => object Doctrine\Common\EventManager(1){ private _listeners => array(0) }
protected _expr => object Doctrine\DBAL\Query\Expression\ExpressionBuilder(1){ private connection => object Doctrine\DBAL\Connection(15) { *RECURSION* } }
private _isConnected => bool TRUE private autoCommit => bool TRUE private _transactionNestingLevel => integer 0 private _transactionIsolationLevel => NULL private _nestTransactionsWithSavepoints => bool FALSE private _params => array(6) ( "dbname" => string(12) "crorn_site22" "user" => string(7) "crorn22" "password" => string(12) "FwuQ87hIwuO3" "host" => string(28) "mysql.crorn.dreamhosters.com" "driver" => string(9) "pdo_mysql" "charset" => string(4) "utf8" ) private platform => object Doctrine\DBAL\Platforms\MySQL57Platform(4){ protected doctrineTypeMapping => NULL protected doctrineTypeComments => NULL protected _eventManager => object Doctrine\Common\EventManager(1)
protected _schemaManager => NULL protected _driver => object Doctrine\DBAL\Driver\PDOMySql\Driver(0){ private _listeners => array(0) }
protected _keywords => NULL }{ }
private _isRollbackOnly => bool FALSE protected defaultFetchMode => integer 2 }{ protected projectName => NULL protected menus => array(0) protected pageTitle => NULL protected pageDescription => NULL protected breadCrumb => array(0) protected tabs => array(0) protected activeMenu => NULL protected activeSubmenu => NULL protected pageActions => array(0) protected username => NULL protected userActions => NULL }
"db.production" => object Closure(1){ public 0 => object Closure(1) { *RECURSION* } }
"db.development" => object Closure(1){ public 0 => object Closure(1) { *RECURSION* } }
"session" => object Closure(1){ public 0 => object Closure(1) { *RECURSION* } }
"mailer" => object Closure(1){ public 0 => object Closure(1) { *RECURSION* } }
"master_request" => object Symfony\Component\HttpFoundation\Request(21) { *RECURSION* } "current_request" => object Symfony\Component\HttpFoundation\Request(21) { *RECURSION* } ) private factories => NULL private protected => NULL private frozen => array(6) ( "config" => bool TRUE "ui" => bool TRUE "default_connection_name" => bool TRUE "connection_params" => bool TRUE "db_configuration" => bool TRUE "db" => bool TRUE ) private raw => array(6) ( "config" => object Closure(1){ public 0 => object Closure(1) { *RECURSION* } }
"ui" => object Closure(1){ public 0 => object Closure(1) { *RECURSION* } }
"default_connection_name" => object Closure(1){ public 0 => object Closure(1) { *RECURSION* } }
"connection_params" => object Closure(1){ public 0 => object Closure(1) { *RECURSION* } }
"db_configuration" => object Closure(1){ public 0 => object Closure(1) { *RECURSION* } }
"db" => object Closure(1){ public 0 => object Closure(1) { *RECURSION* } }
) private keys => array(13) ( "config" => bool TRUE "environment" => bool TRUE "default_connection_name" => bool TRUE "connection_params" => bool TRUE "db_configuration" => bool TRUE "db" => bool TRUE "ui" => bool TRUE "db.production" => bool TRUE "db.development" => bool TRUE "session" => bool TRUE "mailer" => bool TRUE "master_request" => bool TRUE "current_request" => bool TRUE ) }{ protected parameters => array(0) }
public query => object Symfony\Component\HttpFoundation\ParameterBag(1){ protected parameters => array(1) ( "q" => string(10) "contas/407" ) }
public server => object Symfony\Component\HttpFoundation\ServerBag(1){ protected parameters => array(57) ( "PATH" => string(60) "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" "CONTENT_LENGTH" => string(1) "0" "SCRIPT_NAME" => string(10) "/index.php" "REQUEST_URI" => string(11) "/contas/407" "QUERY_STRING" => string(12) "q=contas/407" "REQUEST_METHOD" => string(3) "GET" "SERVER_PROTOCOL" => string(8) "HTTP/1.1" "GATEWAY_INTERFACE" => string(7) "CGI/1.1" "REDIRECT_QUERY_STRING" => string(12) "q=contas/407" "REDIRECT_URL" => string(11) "/contas/407" "REMOTE_PORT" => string(5) "48524" "SCRIPT_FILENAME" => string(38) "/home/crorn2022/crorn.org.br/index.php" "SERVER_ADMIN" => string(22) "webmaster@crorn.org.br" "CONTEXT_DOCUMENT_ROOT" => string(28) "/home/crorn2022/crorn.org.br" "CONTEXT_PREFIX" => string(0) "" "REQUEST_SCHEME" => string(5) "https" "DOCUMENT_ROOT" => string(28) "/home/crorn2022/crorn.org.br" "REMOTE_ADDR" => string(14) "34.239.148.127" "SERVER_PORT" => string(3) "443" "SERVER_ADDR" => string(15) "173.236.201.194" "SERVER_NAME" => string(16) "www.crorn.org.br" "SERVER_SOFTWARE" => string(6) "Apache" "SERVER_SIGNATURE" => string(0) "" "HTTP_CONNECTION" => string(5) "close" "HTTP_HOST" => string(16) "www.crorn.org.br" "HTTP_ACCEPT_ENCODING" => string(7) "br,gzip" "HTTP_IF_MODIFIED_SINCE" => string(29) "Fri, 31 Mar 2023 06:21:02 GMT" "HTTP_ACCEPT_LANGUAGE" => string(14) "en-US,en;q=0.5" "HTTP_ACCEPT" => string(63) "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" "HTTP_USER_AGENT" => string(40) "CCBot/2.0 (https://commoncrawl.org/faq/)" "SSL_TLS_SNI" => string(16) "www.crorn.org.br" "HTTPS" => string(2) "on" "DH_USER" => string(9) "crorn2022" "ds_id_45589340" => string(0) "" "dsid" => string(8) "45589340" "SCRIPT_URI" => string(35) "https://www.crorn.org.br/contas/407" "SCRIPT_URL" => string(11) "/contas/407" "QS_ConnectionId" => string(23) "16960182743742476485857" "QS_AllConn" => string(1) "3" "QS_SrvConn" => string(1) "3" "UNIQUE_ID" => string(27) "ZRcvYmrxvmZfAWW6QT6wtQAAJ7Q" "REDIRECT_STATUS" => string(3) "200" "REDIRECT_SSL_TLS_SNI" => string(16) "www.crorn.org.br" "REDIRECT_HTTPS" => string(2) "on" "REDIRECT_DH_USER" => string(9) "crorn2022" "REDIRECT_ds_id_45589340" => string(0) "" "REDIRECT_dsid" => string(8) "45589340" "REDIRECT_SCRIPT_URI" => string(35) "https://www.crorn.org.br/contas/407" "REDIRECT_SCRIPT_URL" => string(11) "/contas/407" "REDIRECT_QS_ConnectionId" => string(23) "16960182743742476485857" "REDIRECT_QS_AllConn" => string(1) "3" "REDIRECT_QS_SrvConn" => string(1) "3" "REDIRECT_UNIQUE_ID" => string(27) "ZRcvYmrxvmZfAWW6QT6wtQAAJ7Q" "FCGI_ROLE" => string(9) "RESPONDER" "PHP_SELF" => string(10) "/index.php" "REQUEST_TIME_FLOAT" => float 1696018274.3771 "REQUEST_TIME" => integer 1696018274 ) }
public files => object Symfony\Component\HttpFoundation\FileBag(1){ protected parameters => array(0) }
public cookies => object Symfony\Component\HttpFoundation\ParameterBag(1){ protected parameters => array(0) }
public headers => object Symfony\Component\HttpFoundation\HeaderBag(2){ protected headers => array(8) ( "content-length" => array(1) ( 0 => string(1) "0" ) "connection" => array(1) ( 0 => string(5) "close" ) "host" => array(1) ( 0 => string(16) "www.crorn.org.br" ) "accept-encoding" => array(1) ( 0 => string(7) "br,gzip" ) "if-modified-since" => array(1) ( 0 => string(29) "Fri, 31 Mar 2023 06:21:02 GMT" ) "accept-language" => array(1) ( 0 => string(14) "en-US,en;q=0.5" ) "accept" => array(1) ( 0 => string(63) "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" ) "user-agent" => array(1) ( 0 => string(40) "CCBot/2.0 (https://commoncrawl.org/faq/)" ) ) protected cacheControl => array(0) }
protected content => NULL protected languages => NULL protected charsets => NULL protected encodings => NULL protected acceptableContentTypes => NULL protected pathInfo => string(11) "/contas/407" protected requestUri => string(11) "/contas/407" protected baseUrl => string(0) "" protected basePath => NULL protected method => NULL protected format => NULL protected session => NULL protected locale => NULL protected defaultLocale => string(2) "en" }250 if (file_exists($initFile)) { 251 require_once $initFile; 252 } 253 } 254 255 $response = $this->handle($request); 256 $response->prepare($request); 257 $response->send(); 258 } 259 260
-
DOCROOT/index.php [ 99 ] » Mix\Application->run()
94 require APPPATH.'bootstrap'.EXT; 95 96 $application = new \Application(); 97 // Bootstrap the application 98 //muahahah 99 $application->run(); 100