Т. 5, вып. 1, 2023 - СОЦИАЛЬНОЕ УПРАВЛЕНИЕ. Электронный научно-практический журнал
ErrorException [ Warning ]:
APPPATH/views/issue/contents.php [ 19 ]
14
15 <?$rubrics = $contents['rubrics']?>
16 <?$curr_rub = null; // Текущая рубрика?>
17
18 <?foreach($contents['list'] as $row):?>
19 <?$rub_id = $row['rub_id']?>
20 <?$rub_name = (isset($rub_id) AND isset($rubrics[$rub_id])) ? $rubrics[$rub_id]['title'] : NULL?>
21 <div class="contents_item-w">
22 <?if(isset($rub_name) AND $rub_id !== $curr_rub):?>
23 <h3><?=$rub_name?></h3>
24 <?endif?>
-
APPPATH/views/issue/contents.php [ 19 ] » Kohana_Core::error_handler()
14 15 <?$rubrics = $contents['rubrics']?> 16 <?$curr_rub = null; // Текущая рубрика?> 17 18 <?foreach($contents['list'] as $row):?> 19 <?$rub_id = $row['rub_id']?> 20 <?$rub_name = (isset($rub_id) AND isset($rubrics[$rub_id])) ? $rubrics[$rub_id]['title'] : NULL?> 21 <div class="contents_item-w"> 22 <?if(isset($rub_name) AND $rub_id !== $curr_rub):?> 23 <h3><?=$rub_name?></h3> 24 <?endif?> -
APPPATH/views/issue/view.php [ 55 ] » include(arguments)
0string(52) "/data/sciup/www/application/views/issue/contents.php"50 <?endif?> 51 </div> 52 <?if(isset($contents) OR (isset($articles) AND $articles->count())):?> 53 <div id="isu_cont_div" class="contents" data-tab="<?=$tab?>" data-journal="<?=$jnl_id?>" data-issue="<?=$isu_id?>"> 54 <?if(isset($contents)):?> 55 <? include VIEWDIR.'issue/contents'.EXT?> 56 <?else:?> 57 <? include VIEWDIR.'issue/articles'.EXT?> 58 <?endif?> 59 </div> 60 <?endif?> -
APPPATH/classes/view.php [ 44 ] » include(arguments)
0string(48) "/data/sciup/www/application/views/issue/view.php"39 ob_start(); 40 41 try 42 { 43 // Load the view within the current scope 44 include $kohana_view_filename; 45 } 46 catch (Exception $e) 47 { 48 // Delete the output buffer 49 ob_end_clean(); -
SYSPATH/classes/Kohana/View.php [ 359 ] » View::capture()
354 { 355 throw new View_Exception('You must set the file to use within your view before rendering'); 356 } 357 358 // Combine local and global data and capture the output 359 return View::capture($this->_file, $this->_data); 360 } 361 362 } -
SYSPATH/classes/Kohana/View.php [ 236 ] » Kohana_View->render()
231 */ 232 public function __toString() 233 { 234 try 235 { 236 return $this->render(); 237 } 238 catch (Exception $e) 239 { 240 /** 241 * Display the exception message. -
APPPATH/views/layout/document.php [ 150 ] » Kohana_View->__toString()
145 </div> 146 147 148 <div id="content_box" class="conten_container"> 149 <?=$message?> 150 <?=$content?> 151 </div> 152 <div class="entity-type<?if(isset($visitor)):?> __at1<?endif?>"> 153 <?=$ico_menu?> 154 </div> 155 -
APPPATH/classes/view.php [ 44 ] » include(arguments)
0string(53) "/data/sciup/www/application/views/layout/document.php"39 ob_start(); 40 41 try 42 { 43 // Load the view within the current scope 44 include $kohana_view_filename; 45 } 46 catch (Exception $e) 47 { 48 // Delete the output buffer 49 ob_end_clean(); -
SYSPATH/classes/Kohana/View.php [ 359 ] » View::capture()
354 { 355 throw new View_Exception('You must set the file to use within your view before rendering'); 356 } 357 358 // Combine local and global data and capture the output 359 return View::capture($this->_file, $this->_data); 360 } 361 362 } -
SYSPATH/classes/Kohana/View.php [ 236 ] » Kohana_View->render()
231 */ 232 public function __toString() 233 { 234 try 235 { 236 return $this->render(); 237 } 238 catch (Exception $e) 239 { 240 /** 241 * Display the exception message. -
SYSPATH/classes/Kohana/Response.php [ 197 ] » Kohana_View->__toString()
192 public function body($content = NULL) 193 { 194 if ($content === NULL) 195 return $this->_body; 196 197 $this->_body = (string) $content; 198 return $this; 199 } 200 201 /** 202 * Gets or sets the HTTP protocol. The standard protocol to use -
APPPATH/classes/controller.php [ 18 ] » Kohana_Response->body()
13 $user = (isset($this->user)) ? $this->user : NULL; 14 View::set_global('user', $user); 15 } 16 public function after(){ 17 if(isset($this->view)){ 18 $this->response->body($this->view); 19 } 20 parent::after(); 21 } 22 protected function acl_allowed($resource,$action=NULL,$exception=TRUE){ 23 $action = (isset($action)) ? $action : $this->acl_action(); -
APPPATH/classes/controller/front/main.php [ 23 ] » Controller->after()
18 $this->_config = $cfg; // save current config 19 //echo Debug::vars($cfg); 20 } 21 public function after(){ 22 $this->_front_layout(); 23 return parent::after(); 24 } 25 protected function _front_action(){ 26 return $this->request->action(); 27 } 28 protected function _front_profile(){ -
APPPATH/classes/controller/front/document.php [ 48 ] » Controller_Front_Main->after()
43 } 44 } 45 public function after(){ 46 // Устанавливаем в макете список всех страниц на других языках 47 $this->view->langs = $this->_lang_pages(); 48 return parent::after(); 49 } 50 51 // Проверка является ли текущий документ удаленным 52 protected function is_deleted(){ 53 if($this->link->is_del){ -
APPPATH/classes/controller.php [ 94 ] » Controller_Front_Document->after()
89 { 90 return $this->response; 91 } 92 93 // Execute the "after action" method 94 $this->after(); 95 96 // Checks the browser cache 97 $this->check_cache(); 98 99 // Return the response -
{PHP internal call} » Controller->execute()
-
APPPATH/classes/request/client/internal.php [ 126 ] » ReflectionMethod->invoke()
121 // Execute the "after action" method 122 $class->getMethod('after')->invoke($controller); 123 */ 124 //-PORTED FROM 3.3------------------------------------------------------------- 125 // Run the controller's execute() method 126 $response = $class->getMethod('execute')->invoke($controller); 127 128 if ( ! $response instanceof Response) 129 { 130 // Controller failed to return a Response. 131 throw new Kohana_Exception('Controller failed to return a Response'); -
SYSPATH/classes/Kohana/Request/Client.php [ 114 ] » Request_Client_Internal->execute_request()
109 $orig_response = $response = Response::factory(['_protocol' => $request->protocol()]); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header)) -
APPPATH/classes/request.php [ 191 ] » Kohana_Request_Client->execute()
186 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 187 ':uri' => $this->_uri, 188 )); 189 } 190 191 return $this->_client->execute($this); 192 } 193 /** 194 * Redirects as the request response. If the URL does not include a 195 * protocol, it will be converted into a complete URL. 196 * -
DOCROOT/index.php [ 166 ] » Request->execute()
161 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 162 * If no source is specified, the URI will be automatically detected. 163 */ 164 if ( ! defined('SUPPRESS_REQUEST')) { 165 echo Request::factory() 166 ->execute() 167 ->send_headers() 168 ->body(); 169 }
Environment
Included files (167)
DOCROOT/index.php |
APPPATH/bootstrap.php |
SYSPATH/classes/Kohana/Core.php |
SYSPATH/classes/Kohana.php |
APPPATH/classes/i18n.php |
SYSPATH/classes/Kohana/I18n.php |
APPPATH/classes/view.php |
SYSPATH/classes/Kohana/View.php |
APPPATH/classes/kohana/exception.php |
APPPATH/classes/kohana/kohana/exception.php |
SYSPATH/classes/Log.php |
SYSPATH/classes/Kohana/Log.php |
APPPATH/classes/config.php |
SYSPATH/classes/Kohana/Config.php |
APPPATH/classes/log/file.php |
SYSPATH/classes/Log/Writer.php |
SYSPATH/classes/Kohana/Log/Writer.php |
SYSPATH/classes/Log/Syslog.php |
SYSPATH/classes/Kohana/Log/Syslog.php |
SYSPATH/classes/Config/File.php |
SYSPATH/classes/Kohana/Config/File.php |
SYSPATH/classes/Kohana/Config/File/Reader.php |
SYSPATH/classes/Kohana/Config/Reader.php |
SYSPATH/classes/Kohana/Config/Source.php |
SYSPATH/classes/Cookie.php |
SYSPATH/classes/Kohana/Cookie.php |
MODPATH/captcha/init.php |
APPPATH/classes/route.php |
SYSPATH/classes/Kohana/Route.php |
APPPATH/routes.php |
MODPATH/cache/classes/kohana/cache.php |
MODPATH/cache/classes/cache.php |
SYSPATH/classes/Arr.php |
SYSPATH/classes/Kohana/Arr.php |
MODPATH/cache/config/cache.php |
APPPATH/config/cache.php |
SYSPATH/classes/Config/Group.php |
SYSPATH/classes/Kohana/Config/Group.php |
MODPATH/cache/classes/cache/file.php |
MODPATH/cache/classes/kohana/cache/file.php |
MODPATH/cache/classes/cache/garbagecollect.php |
MODPATH/cache/classes/kohana/cache/garbagecollect.php |
APPPATH/classes/request.php |
SYSPATH/classes/Kohana/Request.php |
SYSPATH/classes/HTTP/Request.php |
SYSPATH/classes/Kohana/HTTP/Request.php |
SYSPATH/classes/HTTP/Message.php |
SYSPATH/classes/Kohana/HTTP/Message.php |
APPPATH/classes/http.php |
SYSPATH/classes/Kohana/HTTP.php |
SYSPATH/classes/HTTP/Header.php |
SYSPATH/classes/Kohana/HTTP/Header.php |
APPPATH/classes/request/client/internal.php |
SYSPATH/classes/Kohana/Request/Client/Internal.php |
SYSPATH/classes/Request/Client.php |
SYSPATH/classes/Kohana/Request/Client.php |
APPPATH/classes/page.php |
APPPATH/classes/response.php |
SYSPATH/classes/Kohana/Response.php |
SYSPATH/classes/HTTP/Response.php |
SYSPATH/classes/Kohana/HTTP/Response.php |
APPPATH/classes/controller/front/issue.php |
APPPATH/classes/controller/doc/issue.php |
APPPATH/classes/controller/front/document.php |
APPPATH/classes/controller/front/main.php |
APPPATH/classes/controller.php |
SYSPATH/classes/Kohana/Controller.php |
APPPATH/classes/document.php |
APPPATH/classes/profile.php |
MODPATH/db/classes/model.php |
SYSPATH/classes/Kohana/Model.php |
SYSPATH/classes/Profiler.php |
SYSPATH/classes/Kohana/Profiler.php |
APPPATH/classes/text.php |
SYSPATH/classes/Kohana/Text.php |
MODPATH/db/classes/store.php |
MODPATH/db/classes/store/obj.php |
APPPATH/classes/model/journal.php |
APPPATH/classes/model/group/profile.php |
APPPATH/classes/model/profile.php |
MODPATH/db/classes/type/model.php |
APPPATH/classes/db/model.php |
MODPATH/db/classes/db/object.php |
APPPATH/classes/acl/resource/profile.php |
APPPATH/classes/acl/resource/interface.php |
APPPATH/classes/group/profile.php |
MODPATH/db/classes/store/cfg.php |
MODPATH/db/classes/db/shard.php |
APPPATH/config/shard.php |
APPPATH/classes/db.php |
APPPATH/config/database.php |
APPPATH/config_prod/database.php |
MODPATH/db/classes/db/pgsql.php |
MODPATH/db/classes/db/pdo.php |
APPPATH/classes/model/journal/issue.php |
APPPATH/classes/model/link/doc.php |
APPPATH/classes/acl/resource/document.php |
MODPATH/db/classes/db/type/pgsql/array.php |
APPPATH/classes/db/type/abstract/container.php |
MODPATH/db/classes/db/type/abstract/base.php |
MODPATH/db/classes/db/type/string.php |
MODPATH/db/classes/db/type/abstract/primitive.php |
APPPATH/classes/model/doc/journal.php |
APPPATH/classes/model/journal/document.php |
APPPATH/classes/model/document.php |
APPPATH/classes/model/doc/basic.php |
APPPATH/classes/fs.php |
APPPATH/classes/a2.php |
MODPATH/a2/classes/a2/core.php |
MODPATH/acl/classes/acl.php |
MODPATH/acl/classes/acl/core.php |
APPPATH/config/acl.php |
APPPATH/config_prod/acl.php |
MODPATH/auth/classes/auth.php |
MODPATH/auth/classes/kohana/auth.php |
MODPATH/auth/config/auth.php |
APPPATH/classes/session.php |
SYSPATH/classes/Kohana/Session.php |
APPPATH/config/auth.php |
APPPATH/config_prod/auth.php |
APPPATH/classes/auth/db.php |
SYSPATH/config/session.php |
APPPATH/classes/session/native.php |
SYSPATH/classes/Kohana/Session/Native.php |
APPPATH/classes/acl/assert/doc/limit.php |
MODPATH/acl/classes/acl/assert/interface.php |
APPPATH/classes/acl/assert/doc/product.php |
APPPATH/classes/acl/assert/public.php |
APPPATH/classes/acl/assert/owner.php |
APPPATH/config/front.php |
APPPATH/config_prod/front.php |
APPPATH/i18n/ru.php |
APPPATH/classes/model/publisher.php |
APPPATH/classes/model/doc/file.php |
APPPATH/classes/model/file.php |
APPPATH/classes/model/file/basic.php |
APPPATH/classes/journal.php |
MODPATH/db/classes/store/coll.php |
MODPATH/db/classes/db/coll.php |
APPPATH/classes/coll.php |
APPPATH/classes/model/journal/rubric.php |
APPPATH/classes/model/journal/article.php |
APPPATH/classes/coll/filter/document.php |
APPPATH/classes/message.php |
APPPATH/views/layout/document.php |
APPPATH/views/blocks/header.php |
APPPATH/views/guest/top_menu.php |
APPPATH/classes/url.php |
SYSPATH/classes/Kohana/URL.php |
SYSPATH/classes/UTF8.php |
SYSPATH/classes/Kohana/UTF8.php |
APPPATH/views/blocks/login_menu.php |
APPPATH/views/issue/view_info_menu.php |
APPPATH/views/document/cover.php |
APPPATH/classes/html.php |
SYSPATH/classes/Kohana/HTML.php |
APPPATH/views/issue/subscription.php |
APPPATH/views/issue/view.php |
APPPATH/views/document/inc/access.php |
APPPATH/views/document/inc/download.php |
APPPATH/views/document/inc/bookmark.php |
APPPATH/config/main.php |
APPPATH/views/document/inc/reader.php |
APPPATH/views/issue/contents.php |
APPPATH/views/kohana/error.php |
SYSPATH/classes/Debug.php |
SYSPATH/classes/Kohana/Debug.php |
Loaded extensions (41)
Core |
date |
random |
openssl |
pcre |
hash |
json |
lexbor |
Zend OPcache |
uri |
Reflection |
session |
SPL |
standard |
mysqlnd |
cgi-fcgi |
libxml |
ctype |
curl |
dom |
fileinfo |
filter |
ftp |
gd |
iconv |
mbstring |
mysqli |
pcntl |
PDO |
Phar |
posix |
SimpleXML |
sqlite3 |
tokenizer |
xml |
xmlwriter |
zip |
pdo_mysql |
pdo_pgsql |
pdo_sqlite |
xmlreader |
$_SERVER
HOME |
string(10) "/home/prod" |
USER |
string(4) "prod" |
HTTP_ACCEPT_ENCODING |
string(23) "gzip, br, zstd, deflate" |
HTTP_USER_AGENT |
string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
HTTP_ACCEPT |
string(3) "*/*" |
HTTP_CONNECTION |
string(5) "close" |
HTTP_X_FORWARDED_FOR |
string(13) "216.73.216.33" |
HTTP_X_REAL_IP |
string(13) "216.73.216.33" |
HTTP_HOST |
string(9) "sciup.org" |
KOHANA_ENV |
string(10) "PRODUCTION" |
PATH_INFO |
string(28) "/journal-1411062/2023-5-1-01" |
SCRIPT_FILENAME |
string(25) "/data/sciup/www/index.php" |
REDIRECT_STATUS |
string(3) "200" |
SERVER_NAME |
string(9) "sciup.org" |
SERVER_PORT |
string(2) "80" |
SERVER_ADDR |
string(13) "192.168.20.43" |
REMOTE_PORT |
string(0) "" |
REMOTE_ADDR |
string(13) "216.73.216.33" |
SERVER_SOFTWARE |
string(12) "nginx/1.30.4" |
GATEWAY_INTERFACE |
string(7) "CGI/1.1" |
REQUEST_SCHEME |
string(4) "http" |
SERVER_PROTOCOL |
string(8) "HTTP/1.0" |
DOCUMENT_ROOT |
string(15) "/data/sciup/www" |
DOCUMENT_URI |
string(28) "/journal-1411062/2023-5-1-01" |
REQUEST_URI |
string(28) "/journal-1411062/2023-5-1-01" |
SCRIPT_NAME |
string(28) "/journal-1411062/2023-5-1-01" |
CONTENT_LENGTH |
string(0) "" |
CONTENT_TYPE |
string(0) "" |
REQUEST_METHOD |
string(3) "GET" |
QUERY_STRING |
string(0) "" |
FCGI_ROLE |
string(9) "RESPONDER" |
PHP_SELF |
string(56) "/journal-1411062/2023-5-1-01/journal-1411062/2023-5-1-01" |
REQUEST_TIME_FLOAT |
float 1787960733.3041 |
REQUEST_TIME |
integer 1787960733 |