Czujnik Ciśnienia Paliwa Man Focl/hocl/lion S City/tga/tgl/tgm/tgs/tgx, Neoplan Centroliner/cityliner D0824Lf01-D2876Loh21 M18*1.5Mm 15 Bar
Znalazłeś produkt tańszy? Targujemy się!
(możliwość należy potwierdzić z menedżerem) minimalna kwota zamówienia to 1000 UAH
BezpłatnieDarmowa dostawa
dla produktów oznaczonych jako "darmowa dostawa" (ograniczona kategoria produktów)
MODPATH/database/classes/Kohana/Database/MySQLi.php [ 75 ]
70 catch (Exception $e)
71 {
72 // No connection exists
73 $this->_connection = NULL;
74
75 throw new Database_Exception(':error', array(':error' => $e->getMessage()), $e->getCode());
76 }
77
78 // \xFF is a better delimiter, but the PHP driver uses underscore
79 $this->_connection_id = sha1($hostname.'_'.$username.'_'.$password);
80
MODPATH/database/classes/Kohana/Database/MySQLi.php [ 154 ] » Kohana_Database_MySQLi->connect()
149 }
150
151 public function query($type, $sql, $as_object = FALSE, array $params = NULL)
152 {
153 // Make sure the database is connected
154 $this->_connection or $this->connect();
155
156 if (Kohana::$profiling)
157 {
158 // Benchmark this query for the current instance
159 $benchmark = Profiler::start("Database ({$this->_instance})", $sql);
MODPATH/database/classes/Kohana/Database/Query.php [ 251 ] » Kohana_Database_MySQLi->query(arguments)
0 |
integer 1 |
1 |
string(47) "SELECT params FROM strns_modules WHERE id = 158" |
2 |
bool FALSE |
3 |
array(0) |
246 return new Database_Result_Cached($result, $sql, $as_object, $object_params);
247 }
248 }
249
250 // Execute the query
251 $result = $db->query($this->_type, $sql, $as_object, $object_params);
252
253 if (isset($cache_key) AND $this->_lifetime > 0)
254 {
255 // Cache the result array
256 Kohana::cache($cache_key, $result->as_array(), $this->_lifetime);
APPPATH/classes/Model/Website.php [ 74 ] » Kohana_Database_Query->execute(arguments)
0 |
string(8) "stransua" |
69
70 $query = DB::query(Database::SELECT, "SELECT params FROM strns_modules WHERE id = :params_id");
71 //$query = DB::query(Database::SELECT, "SELECT params FROM srbgf_modules WHERE id = :params_id");
72
73 $query->param(':params_id', $params_id);
74 return $query->execute('stransua')->as_array();
75 }
76
77 public function get_web_sites_contents($parameters) {
78
79 if ($parameters['page'] <= 1)
APPPATH/classes/Controller/Widgets/Footer.php [ 38 ] » Model_Website->get_web_sites(arguments)
0 |
integer 158 |
33 $info_footer = 'info_footer';
34
35 }
36
37 $Website = new Model_Website();
38 $data_str = $Website->get_web_sites(158);
39 $footer_slider = Useful::web_site_footer_slider_convert($data_str[0]);
40
41 $info_footer = Model_Setting::get_setting_by_name($info_footer);
42 $copyright = Model_Setting::get_setting_by_name('copyright');
43
SYSPATH/classes/Kohana/Controller.php [ 84 ] » Controller_Widgets_Footer->action_index()
79 array(':uri' => $this->request->uri())
80 )->request($this->request);
81 }
82
83 // Execute the action itself
84 $this->{$action}();
85
86 // Execute the "after action" method
87 $this->after();
88
89 // Return the response
{PHP internal call} » Kohana_Controller->execute()
SYSPATH/classes/Kohana/Request/Client/Internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0 |
object Controller_Widgets_Footer(9) |
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(20) |
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 [ 1015 ] » Kohana_Request_Client->execute(arguments)
0 |
object Request(20) |
1010 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array(
1011 ':uri' => $this->_uri,
1012 ));
1013 }
1014
1015 return $this->_client->execute($this);
1016 }
1017
1018 /**
1019 * Returns whether this request is the initial request Kohana received.
1020 * Can be used to test for sub requests.
APPPATH/classes/Widget.php [ 77 ] » Kohana_Request->execute()
72 }
73
74 $this->_params['controller'] = $this->_widget_name;
75 $url = Route::get($this->_route_name)->uri($this->_params);
76 //echo $url;
77 return Request::factory($url)->execute();
78 }
79 }
APPPATH/classes/Widget.php [ 33 ] » Widget->render()
28 */
29 public static function load($widget_name, array $params = NULL, $route_name = NULL)
30 {
31
32 $widget = new Widget($widget_name, $params, $route_name);
33 return $widget->render();
34 }
35
36 public function __construct($widget_name, array $params = NULL, $route_name = NULL)
37 {
38 if ($params != NULL)
APPPATH/classes/Controller/Index.php [ 63 ] » Widget::load(arguments)
0 |
string(9) "footer/pl" |
58 $linknav = Widget::load('linknav/'.$this->lang);
59 $header = Widget::load('header/'.$this->lang);
60 $topnav = Widget::load('topnav/'.$this->lang);
61 $breadcrumbs = Widget::load('breadcrumbs/'.$this->lang);
62 $prefooter = Widget::load('prefooter/'.$this->lang);
63 $footer = Widget::load('footer/'.$this->lang);
64
65 $data_url = $this->request->param('id');
66
67 //canonical url
68 $request_uri = $_SERVER['REQUEST_URI'];
APPPATH/classes/Controller/Index/Shop.php [ 8 ] » Controller_Index->before()
3 class Controller_Index_Shop extends Controller_Index
4 {
5
6 public function before()
7 {
8 parent::before();
9 }
10
11 public function action_index() {
12 $this->action_product();
13 }
SYSPATH/classes/Kohana/Controller.php [ 69 ] » Controller_Index_Shop->before()
64 * @return Response
65 */
66 public function execute()
67 {
68 // Execute the "before action" method
69 $this->before();
70
71 // Determine the action to use
72 $action = 'action_'.$this->request->action();
73
74 // If the action doesn't exist, it's a 404
{PHP internal call} » Kohana_Controller->execute()
SYSPATH/classes/Kohana/Request/Client/Internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0 |
object Controller_Index_Shop(9) |
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(20) |
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 [ 1015 ] » Kohana_Request_Client->execute(arguments)
0 |
object Request(20) |
1010 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array(
1011 ':uri' => $this->_uri,
1012 ));
1013 }
1014
1015 return $this->_client->execute($this);
1016 }
1017
1018 /**
1019 * Returns whether this request is the initial request Kohana received.
1020 * 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 |
APPPATH/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/Index/Shop.php |
APPPATH/classes/Controller/Index.php |
APPPATH/classes/Controller/Base.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 |
MODPATH/auth/classes/Auth.php |
MODPATH/auth/classes/Kohana/Auth.php |
MODPATH/auth/config/auth.php |
SYSPATH/classes/Session.php |
SYSPATH/classes/Kohana/Session.php |
APPPATH/config/auth.php |
SYSPATH/classes/Config/Group.php |
SYSPATH/classes/Kohana/Config/Group.php |
MODPATH/orm/classes/Auth/ORM.php |
MODPATH/orm/classes/Kohana/Auth/ORM.php |
SYSPATH/config/session.php |
MODPATH/database/config/session.php |
SYSPATH/classes/Session/Native.php |
SYSPATH/classes/Kohana/Session/Native.php |
SYSPATH/classes/Encrypt.php |
SYSPATH/classes/Kohana/Encrypt.php |
SYSPATH/config/encrypt.php |
APPPATH/config/encrypt.php |
APPPATH/classes/Useful.php |
APPPATH/classes/Model/Setting.php |
SYSPATH/classes/Model.php |
SYSPATH/classes/Kohana/Model.php |
MODPATH/database/classes/DB.php |
MODPATH/database/classes/Kohana/DB.php |
MODPATH/database/classes/Database.php |
MODPATH/database/classes/Kohana/Database.php |
MODPATH/database/classes/Database/Query.php |
MODPATH/database/classes/Kohana/Database/Query.php |
MODPATH/database/config/database.php |
APPPATH/config/database.php |
MODPATH/database/classes/Database/MySQLi.php |
MODPATH/database/classes/Kohana/Database/MySQLi.php |
MODPATH/database/classes/Database/MySQLi/Result.php |
MODPATH/database/classes/Kohana/Database/MySQLi/Result.php |
MODPATH/database/classes/Database/Result.php |
MODPATH/database/classes/Kohana/Database/Result.php |
APPPATH/classes/Widget.php |
APPPATH/classes/Controller/Widgets/Linknav.php |
APPPATH/classes/Controller/Widgets.php |
APPPATH/classes/Model/Navigation.php |
APPPATH/classes/Model/User.php |
MODPATH/orm/classes/Model/Auth/User.php |
MODPATH/orm/classes/ORM.php |
MODPATH/orm/classes/Kohana/ORM.php |
SYSPATH/classes/Inflector.php |
SYSPATH/classes/Kohana/Inflector.php |
SYSPATH/config/inflector.php |
MODPATH/database/classes/Database/Query/Builder/Select.php |
MODPATH/database/classes/Kohana/Database/Query/Builder/Select.php |
MODPATH/database/classes/Database/Query/Builder/Where.php |
MODPATH/database/classes/Kohana/Database/Query/Builder/Where.php |
MODPATH/database/classes/Database/Query/Builder.php |
MODPATH/database/classes/Kohana/Database/Query/Builder.php |
APPPATH/i18n/pl.php |
APPPATH/classes/Controller/Widgets/Lang.php |
APPPATH/views/widgets/index_view.php |
APPPATH/views/widgets/lang_view.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/widgets/linknav_view.php |
APPPATH/classes/Controller/Widgets/Header.php |
APPPATH/classes/Controller/Widgets/Cart.php |
APPPATH/views/widgets/cart_view.php |
APPPATH/views/widgets/found_cheaper.php |
APPPATH/classes/Controller/Widgets/Buynow.php |
APPPATH/views/widgets/buynow_view.php |
APPPATH/classes/Controller/Widgets/Favoritelist.php |
APPPATH/views/widgets/favoritelist_view.php |
APPPATH/classes/Model/Favoritelist.php |
APPPATH/classes/Search.php |
APPPATH/views/widgets/header_view.php |
APPPATH/classes/Controller/Widgets/Topnav.php |
APPPATH/classes/Controller/Widgets/Category.php |
APPPATH/classes/Model/Website.php |
APPPATH/views/widgets/category_view.php |
APPPATH/views/widgets/topnav_view.php |
APPPATH/classes/Controller/Widgets/Breadcrumbs.php |
APPPATH/classes/Common.php |
APPPATH/views/widgets/breadcrumbs_view.php |
APPPATH/classes/Controller/Widgets/Prefooter.php |
APPPATH/views/widgets/prefooter_view.php |
APPPATH/classes/Controller/Widgets/Footer.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 |
filter |
hash |
pcntl |
Reflection |
SPL |
session |
standard |
cgi-fcgi |
bcmath |
calendar |
ctype |
curl |
dom |
fileinfo |
ftp |
gd |
iconv |
imap |
json |
mbstring |
mcrypt |
mssql |
mysqlnd |
mysql |
mysqli |
odbc |
PDO |
pdo_dblib |
pdo_mysql |
PDO_ODBC |
pdo_sqlite |
Phar |
posix |
SimpleXML |
soap |
sockets |
sqlite3 |
tokenizer |
xml |
wddx |
xmlreader |
xmlrpc |
xmlwriter |
xsl |
zip |
mhash |
Zend OPcache |
lang |
string(2) "pl" |
lang_url |
string(3) "pl/" |
USER |
string(12) "kwyplojgc41o" |
HOME |
string(18) "/home/kwyplojgc41o" |
FCGI_ROLE |
string(9) "RESPONDER" |
REDIRECT_UNIQUE_ID |
string(27) "aHzHaNwhO1o3nDVZFn7AugAAAAw" |
REDIRECT_isproxyrequest |
string(1) "1" |
REDIRECT_SCRIPT_URL |
string(23) "/pl/shop/product/892216" |
REDIRECT_SCRIPT_URI |
string(49) "https://strans-shop.com.ua/pl/shop/product/892216" |
REDIRECT_HTTPS |
string(2) "on" |
REDIRECT_STATUS |
string(3) "200" |
UNIQUE_ID |
string(27) "aHzHaNwhO1o3nDVZFn7AugAAAAw" |
SCRIPT_URL |
string(23) "/pl/shop/product/892216" |
SCRIPT_URI |
string(49) "https://strans-shop.com.ua/pl/shop/product/892216" |
HTTPS |
string(2) "on" |
proxy-nokeepalive |
string(1) "1" |
HTTP_HOST |
string(18) "strans-shop.com.ua" |
HTTP_X_FORWARDED_FOR |
string(14) "216.73.216.228" |
HTTP_X_FORWARDED_HOST |
string(18) "strans-shop.com.ua" |
HTTP_X_FORWARDED_PORT |
string(3) "443" |
HTTP_X_FORWARDED_PROTO |
string(5) "https" |
HTTP_X_FORWARDED_SERVER |
string(18) "strans-shop.com.ua" |
HTTP_X_REAL_IP |
string(14) "216.73.216.228" |
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_X_HTTPS |
string(1) "1" |
PATH |
string(180) "/usr/local/jdk/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/ …" |
SERVER_SIGNATURE |
string(0) "" |
SERVER_SOFTWARE |
string(6) "Apache" |
SERVER_NAME |
string(18) "strans-shop.com.ua" |
SERVER_ADDR |
string(13) "92.205.107.45" |
SERVER_PORT |
string(3) "443" |
REMOTE_ADDR |
string(14) "216.73.216.228" |
DOCUMENT_ROOT |
string(30) "/home/kwyplojgc41o/public_html" |
REQUEST_SCHEME |
string(5) "https" |
CONTEXT_PREFIX |
string(0) "" |
CONTEXT_DOCUMENT_ROOT |
string(30) "/home/kwyplojgc41o/public_html" |
SERVER_ADMIN |
string(28) "webmaster@strans-shop.com.ua" |
SCRIPT_FILENAME |
string(40) "/home/kwyplojgc41o/public_html/index.php" |
REMOTE_PORT |
string(5) "43196" |
REDIRECT_URL |
string(23) "/pl/shop/product/892216" |
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(23) "/pl/shop/product/892216" |
SCRIPT_NAME |
string(10) "/index.php" |
PATH_INFO |
string(23) "/pl/shop/product/892216" |
PATH_TRANSLATED |
string(62) "redirect:/index.php/pl/shop/product/892216/shop/product/892216" |
PHP_SELF |
string(33) "/index.php/pl/shop/product/892216" |
REQUEST_TIME_FLOAT |
float 1753007976,6693 |
REQUEST_TIME |
integer 1753007976 |
argv |
array(0) |
argc |
integer 0 |