ВИБРООПОР
ВИБРОГАСИТЕЛЕЙ
ВИБРОИЗОЛЯТОРОВ
АМОРТИЗАТОРОВ
MODPATH/database/classes/Kohana/Database/MySQL.php [ 67 ]
62 catch (Exception $e)
63 {
64 // No connection exists
65 $this->_connection = NULL;
66
67 throw new Database_Exception(':error',
68 array(':error' => $e->getMessage()),
69 $e->getCode());
70 }
71
72 // \xFF is a better delimiter, but the PHP driver uses underscore
MODPATH/database/classes/Kohana/Database/MySQL.php [ 171 ] » Kohana_Database_MySQL->connect()
166 }
167
168 public function query($type, $sql, $as_object = FALSE, array $params = NULL)
169 {
170 // Make sure the database is connected
171 $this->_connection or $this->connect();
172
173 if (Kohana::$profiling)
174 {
175 // Benchmark this query for the current instance
176 $benchmark = Profiler::start("Database ({$this->_instance})", $sql);
MODPATH/database/classes/Kohana/Database/MySQL.php [ 359 ] » Kohana_Database_MySQL->query(arguments)
0 |
integer 1 |
1 |
string(29) "SHOW FULL COLUMNS FROM `news`" |
2 |
bool FALSE |
354 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table.' LIKE '.$this->quote($like), FALSE);
355 }
356 else
357 {
358 // Find all column names
359 $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table, FALSE);
360 }
361
362 $count = 0;
363 $columns = array();
364 foreach ($result as $row)
MODPATH/orm/classes/Kohana/ORM.php [ 1668 ] » Kohana_Database_MySQL->list_columns(arguments)
0 |
string(4) "news" |
1663 * @return array
1664 */
1665 public function list_columns()
1666 {
1667 // Proxy to database
1668 return $this->_db->list_columns($this->_table_name);
1669 }
1670
1671 /**
1672 * Returns an ORM model for the given one-one related alias
1673 *
MODPATH/orm/classes/Kohana/ORM.php [ 444 ] » Kohana_ORM->list_columns()
439 $this->_table_columns = ORM::$_column_cache[$this->_object_name];
440 }
441 else
442 {
443 // Grab column information from database
444 $this->_table_columns = $this->list_columns();
445
446 // Load column cache
447 ORM::$_column_cache[$this->_object_name] = $this->_table_columns;
448 }
449 }
MODPATH/orm/classes/Kohana/ORM.php [ 389 ] » Kohana_ORM->reload_columns()
384 {
385 $this->{$property} = $value;
386 }
387
388 // Load column information
389 $this->reload_columns();
390
391 // Clear initial model state
392 $this->clear();
393 }
394
MODPATH/orm/classes/Kohana/ORM.php [ 254 ] » Kohana_ORM->_initialize()
249 *
250 * @param mixed $id Parameter for find or object to load
251 */
252 public function __construct($id = NULL)
253 {
254 $this->_initialize();
255
256 if ($id !== NULL)
257 {
258 if (is_array($id))
259 {
MODPATH/orm/classes/Kohana/ORM.php [ 46 ] » Kohana_ORM->__construct(arguments)
0 |
NULL |
41 public static function factory($model, $id = NULL)
42 {
43 // Set class name
44 $model = 'Model_'.$model;
45
46 return new $model($id);
47 }
48
49 /**
50 * "Has one" relationships
51 * @var array
APPPATH/views/frontend/right.php [ 18 ] » Kohana_ORM::factory(arguments)
0 |
string(4) "News" |
13 <div style="margin-top: 10px">
14 <p><span class="title">E-mail:</span> Vibronikaspb@gmail.com</p>
15 </div>
16 </div>
17 <div class="news-box">
18 <?php $news = ORM::factory('News')->where('enabled', '=', 1)->order_by('id', 'desc')->limit(3)->find_all(); ?>
19 <?php if (count($news)): ?>
20 <?php foreach ($news as $new): ?>
21 <div class="item-news">
22 <h6><?php echo $new->date_format(); ?></h6>
23 <a href="<?php echo URL::site("news/{$new->id}");?>"><?php echo $new->annotation; ?></a>
SYSPATH/classes/Kohana/View.php [ 62 ] » include(arguments)
0 |
string(57) "/var/www/finimor.com/application/views/frontend/right.php" |
57 ob_start();
58
59 try
60 {
61 // Load the view within the current scope
62 include $kohana_view_filename;
63 }
64 catch (Exception $e)
65 {
66 // Delete the output buffer
67 ob_end_clean();
SYSPATH/classes/Kohana/View.php [ 359 ] » Kohana_View::capture(arguments)
0 |
string(57) "/var/www/finimor.com/application/views/frontend/right.php" |
1 |
array(0) |
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/frontend/index/call.php [ 14 ] » Kohana_View->__toString()
9 <tr><td style="padding: 0px 15px 15px 0px;">Телефон:</td><td><?php echo Form::input('phone', @$_POST['phone'], array('style'=>"width: 50%")); ?></td></tr>
10 <tr><td style="padding: 0px 15px 15px 0px;"> </td><td><input type="submit" value="Отправить" /></td></tr>
11 </table>
12 <?php echo Form::close(); ?>
13 </section>
14 <?php echo View::factory('frontend/right'); ?>
15 </div>
16 </div>
SYSPATH/classes/Kohana/View.php [ 62 ] » include(arguments)
0 |
string(62) "/var/www/finimor.com/application/views/frontend/index/call.php" |
57 ob_start();
58
59 try
60 {
61 // Load the view within the current scope
62 include $kohana_view_filename;
63 }
64 catch (Exception $e)
65 {
66 // Delete the output buffer
67 ob_end_clean();
SYSPATH/classes/Kohana/View.php [ 359 ] » Kohana_View::capture(arguments)
0 |
string(62) "/var/www/finimor.com/application/views/frontend/index/call.php" |
1 |
array(1) ( "title" => string(29) "Обратный звонок" ) |
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/frontend/_layouts/main.php [ 63 ] » Kohana_View->__toString()
58 <p>ВИБРОИЗОЛЯТОРОВ</p>
59 <p>АМОРТИЗАТОРОВ</p>
60 </div>
61 </div>
62
63 <?php echo isset($content) ? $content : ""; ?>
64
65 <footer class="footer">
66 <div class="wrapp-page">
67 <div class="footer-right">
68 <div class="counter">
SYSPATH/classes/Kohana/View.php [ 62 ] » include(arguments)
0 |
string(65) "/var/www/finimor.com/application/views/frontend/_layouts/main.php" |
57 ob_start();
58
59 try
60 {
61 // Load the view within the current scope
62 include $kohana_view_filename;
63 }
64 catch (Exception $e)
65 {
66 // Delete the output buffer
67 ob_end_clean();
SYSPATH/classes/Kohana/View.php [ 359 ] » Kohana_View::capture(arguments)
0 |
string(65) "/var/www/finimor.com/application/views/frontend/_layouts/main.php" |
1 |
array(4) (
"content" => object View(2) |
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/Controller/Template.php [ 44 ] » Kohana_View->render()
39 */
40 public function after()
41 {
42 if ($this->auto_render === TRUE)
43 {
44 $this->response->body($this->template->render());
45 }
46
47 parent::after();
48 }
49
APPPATH/classes/Controller/Frontend.php [ 21 ] » Kohana_Controller_Template->after()
16 public function after()
17 {
18 $this->template->title = $this->title;
19 $this->template->keywords = $this->keywords;
20 $this->template->description = $this->description;
21 parent::after();
22 }
23
24 }
SYSPATH/classes/Kohana/Controller.php [ 87 ] » Controller_Frontend->after()
82
83 // Execute the action itself
84 $this->{$action}();
85
86 // Execute the "after action" method
87 $this->after();
88
89 // Return the response
90 return $this->response;
91 }
92
{PHP internal call} » Kohana_Controller->execute()
SYSPATH/classes/Kohana/Request/Client/Internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0 |
object Controller_Frontend_Index(7) |
92
93 // Create a new instance of the controller
94 $controller = $class->newInstance($request, $response);
95
96 // Run the controller's execute() method
97 $response = $class->getMethod('execute')->invoke($controller);
98
99 if ( ! $response instanceof Response)
100 {
101 // Controller failed to return a Response.
102 throw new Kohana_Exception('Controller failed to return a Response');
SYSPATH/classes/Kohana/Request/Client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0 |
object Request(19) |
1 |
object Response(5) |
109 $orig_response = $response = Response::factory(array('_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))
SYSPATH/classes/Kohana/Request.php [ 993 ] » Kohana_Request_Client->execute(arguments)
0 |
object Request(19) |
988 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array(
989 ':uri' => $this->_uri,
990 ));
991 }
992
993 return $this->_client->execute($this);
994 }
995
996 /**
997 * Returns whether this request is the initial request Kohana received.
998 * Can be used to test for sub requests.
DOCROOT/index.php [ 118 ] » Kohana_Request->execute()
113 /**
114 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO'].
115 * If no source is specified, the URI will be automatically detected.
116 */
117 echo Request::factory(TRUE, array(), FALSE)
118 ->execute()
119 ->send_headers(TRUE)
120 ->body();
121 }
DOCROOT/index.php |
APPPATH/bootstrap.php |
SYSPATH/classes/Kohana/Core.php |
SYSPATH/classes/Kohana.php |
SYSPATH/classes/I18n.php |
SYSPATH/classes/Kohana/I18n.php |
SYSPATH/classes/HTTP.php |
SYSPATH/classes/Kohana/HTTP.php |
SYSPATH/classes/Kohana/Exception.php |
SYSPATH/classes/Kohana/Kohana/Exception.php |
SYSPATH/classes/Log.php |
SYSPATH/classes/Kohana/Log.php |
SYSPATH/classes/Config.php |
SYSPATH/classes/Kohana/Config.php |
SYSPATH/classes/Log/File.php |
SYSPATH/classes/Kohana/Log/File.php |
SYSPATH/classes/Log/Writer.php |
SYSPATH/classes/Kohana/Log/Writer.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 |
SYSPATH/classes/Route.php |
SYSPATH/classes/Kohana/Route.php |
SYSPATH/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 |
SYSPATH/classes/HTTP/Header.php |
SYSPATH/classes/Kohana/HTTP/Header.php |
SYSPATH/classes/Request/Client/Internal.php |
SYSPATH/classes/Kohana/Request/Client/Internal.php |
SYSPATH/classes/Request/Client.php |
SYSPATH/classes/Kohana/Request/Client.php |
SYSPATH/classes/Arr.php |
SYSPATH/classes/Kohana/Arr.php |
SYSPATH/classes/Response.php |
SYSPATH/classes/Kohana/Response.php |
SYSPATH/classes/HTTP/Response.php |
SYSPATH/classes/Kohana/HTTP/Response.php |
SYSPATH/classes/Profiler.php |
SYSPATH/classes/Kohana/Profiler.php |
APPPATH/classes/Controller/Frontend/Index.php |
APPPATH/classes/Controller/Frontend.php |
SYSPATH/classes/Controller/Template.php |
SYSPATH/classes/Kohana/Controller/Template.php |
SYSPATH/classes/Controller.php |
SYSPATH/classes/Kohana/Controller.php |
SYSPATH/classes/View.php |
SYSPATH/classes/Kohana/View.php |
APPPATH/views/frontend/_layouts/main.php |
SYSPATH/classes/HTML.php |
SYSPATH/classes/Kohana/HTML.php |
SYSPATH/classes/URL.php |
SYSPATH/classes/Kohana/URL.php |
SYSPATH/classes/UTF8.php |
SYSPATH/classes/Kohana/UTF8.php |
APPPATH/views/frontend/index/call.php |
MODPATH/message/classes/Message.php |
MODPATH/message/classes/Kohana/Message.php |
SYSPATH/classes/Session.php |
SYSPATH/classes/Kohana/Session.php |
SYSPATH/config/session.php |
MODPATH/database/config/session.php |
SYSPATH/classes/Config/Group.php |
SYSPATH/classes/Kohana/Config/Group.php |
SYSPATH/classes/Session/Native.php |
SYSPATH/classes/Kohana/Session/Native.php |
MODPATH/message/config/message.php |
APPPATH/config/message.php |
SYSPATH/classes/Form.php |
SYSPATH/classes/Kohana/Form.php |
APPPATH/views/frontend/right.php |
MODPATH/orm/classes/ORM.php |
MODPATH/orm/classes/Kohana/ORM.php |
SYSPATH/classes/Model.php |
SYSPATH/classes/Kohana/Model.php |
APPPATH/classes/Model/News.php |
SYSPATH/classes/Inflector.php |
SYSPATH/classes/Kohana/Inflector.php |
SYSPATH/config/inflector.php |
MODPATH/database/classes/Database.php |
MODPATH/database/classes/Kohana/Database.php |
MODPATH/database/config/database.php |
APPPATH/config/database.php |
MODPATH/database/classes/Database/MySQL.php |
MODPATH/database/classes/Kohana/Database/MySQL.php |
MODPATH/database/classes/Database/Exception.php |
MODPATH/database/classes/Kohana/Database/Exception.php |
SYSPATH/classes/Debug.php |
SYSPATH/classes/Kohana/Debug.php |
SYSPATH/classes/Date.php |
SYSPATH/classes/Kohana/Date.php |
SYSPATH/views/kohana/error.php |
Core |
date |
ereg |
libxml |
openssl |
pcre |
zlib |
bz2 |
calendar |
ctype |
hash |
filter |
ftp |
gettext |
gmp |
SPL |
iconv |
Reflection |
session |
standard |
shmop |
SimpleXML |
sockets |
mbstring |
tokenizer |
xml |
apache2handler |
curl |
dom |
fileinfo |
gd |
json |
exif |
mcrypt |
mysql |
mysqli |
PDO |
pdo_mysql |
pdo_sqlite |
Phar |
sqlite3 |
wddx |
xmlreader |
xmlwriter |
xsl |
zip |
mhash |
REDIRECT_UNIQUE_ID |
string(27) "aB2y5BU4tG15GTfl3AAy8wAAAAM" |
REDIRECT_STATUS |
string(3) "200" |
UNIQUE_ID |
string(27) "aB2y5BU4tG15GTfl3AAy8wAAAAM" |
HTTP_ACCEPT |
string(3) "*/*" |
HTTP_USER_AGENT |
string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
HTTP_ACCEPT_ENCODING |
string(23) "gzip, br, zstd, deflate" |
HTTP_HOST |
string(11) "finimor.com" |
PATH |
string(49) "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin" |
SERVER_SIGNATURE |
string(0) "" |
SERVER_SOFTWARE |
string(32) "Apache/2.4.6 (CentOS) PHP/5.4.16" |
SERVER_NAME |
string(11) "finimor.com" |
SERVER_ADDR |
string(13) "195.24.65.155" |
SERVER_PORT |
string(2) "80" |
REMOTE_ADDR |
string(13) "18.216.141.19" |
DOCUMENT_ROOT |
string(21) "/var/www/finimor.com/" |
REQUEST_SCHEME |
string(4) "http" |
CONTEXT_PREFIX |
string(0) "" |
CONTEXT_DOCUMENT_ROOT |
string(21) "/var/www/finimor.com/" |
SERVER_ADMIN |
string(14) "root@localhost" |
SCRIPT_FILENAME |
string(30) "/var/www/finimor.com/index.php" |
REMOTE_PORT |
string(5) "49065" |
REDIRECT_URL |
string(5) "/call" |
GATEWAY_INTERFACE |
string(7) "CGI/1.1" |
SERVER_PROTOCOL |
string(8) "HTTP/1.1" |
REQUEST_METHOD |
string(3) "GET" |
QUERY_STRING |
string(0) "" |
REQUEST_URI |
string(5) "/call" |
SCRIPT_NAME |
string(10) "/index.php" |
PATH_INFO |
string(5) "/call" |
PATH_TRANSLATED |
string(24) "redirect:/index.php/call" |
PHP_SELF |
string(15) "/index.php/call" |
REQUEST_TIME_FLOAT |
float 1746776804,188 |
REQUEST_TIME |
integer 1746776804 |