Galeria







Undefined offset: 1 in file framework/backend/Browser.php, line 44.
| 40 | $br = self::known_browsers; |
|---|---|
| 41 | $es = self::known_engines; |
| 42 | $vs = '[\/ ]?([\d.]*)'; |
| 43 | $browser_detect = preg_match("/$br$vs/", $ua, $matches); |
| 44 | list(self::$sName, self::$sVersion) = array_slice($matches, 1); |
| 45 | $engine_detect = preg_match("/$es$vs/", $ua, $matches); |
| 46 | list(self::$sEngine, self::$sEngineVersion) = array_slice($matches, 1); |
| 47 | if (!$this->name) { |
| 48 | self::$sCrawler = preg_match('/(http|www)/', $ua) ? $ua : false; |
| 39 | /** |
|---|---|
| 40 | * Creates new HTML document |
| 41 | */ |
| 42 | public function __construct($setup = true) { |
| 43 | $this->browser = new Browser(); |
| 44 | $this->document = new DOMHTML5($setup); |
| 45 | $this->currentNode = $this->document->bodyNode; |
| 46 | } |
| 47 | /** |
| 15 | /** |
|---|---|
| 16 | * Loads configured application layout |
| 17 | */ |
| 18 | public static function init() { |
| 19 | self::$html = new HTML(false); |
| 20 | if (!defined('APP_LAYOUT')) define('APP_LAYOUT', '3CD'); |
| 21 | self::$html->loadLayout(APP_LAYOUT . '.html'); |
| 22 | if (self::$html->browser->matchName('MSIE', '<9')) |
| 23 | self::$html->xscript(S_IE_HACKS); |
| 26 | exit("<pre><code>$h</code></pre>"); |
|---|---|
| 27 | } |
| 28 | $request->exec(); |
| 29 | } else { |
| 30 | Layout::init(); // AJAX::Init() inside |
| 31 | } |
| 32 | $_SESSION['_'] = $sid_md5; |
| 33 | if (file_exists($app_init = PATH_APPLICATION . '/init.php')) |
| 34 | require $app_init; |
| 5 | require PATH_FRAMEWORK_SERVER_SIDE . '/Symbols.php'; |
|---|---|
| 6 | require PATH_FRAMEWORK_SERVER_SIDE . '/Core.php'; |
| 7 | require PATH_FRAMEWORK_SERVER_SIDE . '/Startup.php'; |
| 8 | require PATH_APPLICATION . '/config.php'; |
| 9 | Startup::Sequence(); |
| 10 | ?> |
Undefined offset: 0 in file framework/backend/Browser.php, line 44.
| 40 | $br = self::known_browsers; |
|---|---|
| 41 | $es = self::known_engines; |
| 42 | $vs = '[\/ ]?([\d.]*)'; |
| 43 | $browser_detect = preg_match("/$br$vs/", $ua, $matches); |
| 44 | list(self::$sName, self::$sVersion) = array_slice($matches, 1); |
| 45 | $engine_detect = preg_match("/$es$vs/", $ua, $matches); |
| 46 | list(self::$sEngine, self::$sEngineVersion) = array_slice($matches, 1); |
| 47 | if (!$this->name) { |
| 48 | self::$sCrawler = preg_match('/(http|www)/', $ua) ? $ua : false; |
| 39 | /** |
|---|---|
| 40 | * Creates new HTML document |
| 41 | */ |
| 42 | public function __construct($setup = true) { |
| 43 | $this->browser = new Browser(); |
| 44 | $this->document = new DOMHTML5($setup); |
| 45 | $this->currentNode = $this->document->bodyNode; |
| 46 | } |
| 47 | /** |
| 15 | /** |
|---|---|
| 16 | * Loads configured application layout |
| 17 | */ |
| 18 | public static function init() { |
| 19 | self::$html = new HTML(false); |
| 20 | if (!defined('APP_LAYOUT')) define('APP_LAYOUT', '3CD'); |
| 21 | self::$html->loadLayout(APP_LAYOUT . '.html'); |
| 22 | if (self::$html->browser->matchName('MSIE', '<9')) |
| 23 | self::$html->xscript(S_IE_HACKS); |
| 26 | exit("<pre><code>$h</code></pre>"); |
|---|---|
| 27 | } |
| 28 | $request->exec(); |
| 29 | } else { |
| 30 | Layout::init(); // AJAX::Init() inside |
| 31 | } |
| 32 | $_SESSION['_'] = $sid_md5; |
| 33 | if (file_exists($app_init = PATH_APPLICATION . '/init.php')) |
| 34 | require $app_init; |
| 5 | require PATH_FRAMEWORK_SERVER_SIDE . '/Symbols.php'; |
|---|---|
| 6 | require PATH_FRAMEWORK_SERVER_SIDE . '/Core.php'; |
| 7 | require PATH_FRAMEWORK_SERVER_SIDE . '/Startup.php'; |
| 8 | require PATH_APPLICATION . '/config.php'; |
| 9 | Startup::Sequence(); |
| 10 | ?> |
Undefined offset: 1 in file framework/backend/Browser.php, line 46.
| 42 | $vs = '[\/ ]?([\d.]*)'; |
|---|---|
| 43 | $browser_detect = preg_match("/$br$vs/", $ua, $matches); |
| 44 | list(self::$sName, self::$sVersion) = array_slice($matches, 1); |
| 45 | $engine_detect = preg_match("/$es$vs/", $ua, $matches); |
| 46 | list(self::$sEngine, self::$sEngineVersion) = array_slice($matches, 1); |
| 47 | if (!$this->name) { |
| 48 | self::$sCrawler = preg_match('/(http|www)/', $ua) ? $ua : false; |
| 49 | self::$sValidator = preg_match('/validator/i', $ua) ? $ua : false; |
| 50 | self::$sUnknown = !(self::$sCrawler || self::$sValidator) ? $ua : false; |
| 39 | /** |
|---|---|
| 40 | * Creates new HTML document |
| 41 | */ |
| 42 | public function __construct($setup = true) { |
| 43 | $this->browser = new Browser(); |
| 44 | $this->document = new DOMHTML5($setup); |
| 45 | $this->currentNode = $this->document->bodyNode; |
| 46 | } |
| 47 | /** |
| 15 | /** |
|---|---|
| 16 | * Loads configured application layout |
| 17 | */ |
| 18 | public static function init() { |
| 19 | self::$html = new HTML(false); |
| 20 | if (!defined('APP_LAYOUT')) define('APP_LAYOUT', '3CD'); |
| 21 | self::$html->loadLayout(APP_LAYOUT . '.html'); |
| 22 | if (self::$html->browser->matchName('MSIE', '<9')) |
| 23 | self::$html->xscript(S_IE_HACKS); |
| 26 | exit("<pre><code>$h</code></pre>"); |
|---|---|
| 27 | } |
| 28 | $request->exec(); |
| 29 | } else { |
| 30 | Layout::init(); // AJAX::Init() inside |
| 31 | } |
| 32 | $_SESSION['_'] = $sid_md5; |
| 33 | if (file_exists($app_init = PATH_APPLICATION . '/init.php')) |
| 34 | require $app_init; |
| 5 | require PATH_FRAMEWORK_SERVER_SIDE . '/Symbols.php'; |
|---|---|
| 6 | require PATH_FRAMEWORK_SERVER_SIDE . '/Core.php'; |
| 7 | require PATH_FRAMEWORK_SERVER_SIDE . '/Startup.php'; |
| 8 | require PATH_APPLICATION . '/config.php'; |
| 9 | Startup::Sequence(); |
| 10 | ?> |
Undefined offset: 0 in file framework/backend/Browser.php, line 46.
| 42 | $vs = '[\/ ]?([\d.]*)'; |
|---|---|
| 43 | $browser_detect = preg_match("/$br$vs/", $ua, $matches); |
| 44 | list(self::$sName, self::$sVersion) = array_slice($matches, 1); |
| 45 | $engine_detect = preg_match("/$es$vs/", $ua, $matches); |
| 46 | list(self::$sEngine, self::$sEngineVersion) = array_slice($matches, 1); |
| 47 | if (!$this->name) { |
| 48 | self::$sCrawler = preg_match('/(http|www)/', $ua) ? $ua : false; |
| 49 | self::$sValidator = preg_match('/validator/i', $ua) ? $ua : false; |
| 50 | self::$sUnknown = !(self::$sCrawler || self::$sValidator) ? $ua : false; |
| 39 | /** |
|---|---|
| 40 | * Creates new HTML document |
| 41 | */ |
| 42 | public function __construct($setup = true) { |
| 43 | $this->browser = new Browser(); |
| 44 | $this->document = new DOMHTML5($setup); |
| 45 | $this->currentNode = $this->document->bodyNode; |
| 46 | } |
| 47 | /** |
| 15 | /** |
|---|---|
| 16 | * Loads configured application layout |
| 17 | */ |
| 18 | public static function init() { |
| 19 | self::$html = new HTML(false); |
| 20 | if (!defined('APP_LAYOUT')) define('APP_LAYOUT', '3CD'); |
| 21 | self::$html->loadLayout(APP_LAYOUT . '.html'); |
| 22 | if (self::$html->browser->matchName('MSIE', '<9')) |
| 23 | self::$html->xscript(S_IE_HACKS); |
| 26 | exit("<pre><code>$h</code></pre>"); |
|---|---|
| 27 | } |
| 28 | $request->exec(); |
| 29 | } else { |
| 30 | Layout::init(); // AJAX::Init() inside |
| 31 | } |
| 32 | $_SESSION['_'] = $sid_md5; |
| 33 | if (file_exists($app_init = PATH_APPLICATION . '/init.php')) |
| 34 | require $app_init; |
| 5 | require PATH_FRAMEWORK_SERVER_SIDE . '/Symbols.php'; |
|---|---|
| 6 | require PATH_FRAMEWORK_SERVER_SIDE . '/Core.php'; |
| 7 | require PATH_FRAMEWORK_SERVER_SIDE . '/Startup.php'; |
| 8 | require PATH_APPLICATION . '/config.php'; |
| 9 | Startup::Sequence(); |
| 10 | ?> |
A session had already been started - ignoring session_start() in file framework/backend/Access.php, line 85.
| 81 | $value = self::seed_key($a); |
|---|---|
| 82 | } |
| 83 | list(self::$slice_key, self::$last_slice_key) = $keys; |
| 84 | if ($session) { |
| 85 | session_start(); self::$sid_key = '_' . session_id(); |
| 86 | if (!array_key_exists(self::$sid_key, $_SESSION)) |
| 87 | $_SESSION[self::$sid_key] = true; |
| 88 | } |
| 89 | } |
| 8 | * Initializes system for AJAX requests |
|---|---|
| 9 | */ |
| 10 | public static function Init() { |
| 11 | if (!self::$ready) { |
| 12 | Access::init(); |
| 13 | if (defined('DATABASE')) $_SESSION[AJAX_DATABASE] = DATABASE; |
| 14 | if (Layout::$html) { |
| 15 | Layout::$html |
| 16 | ->xstyle('System.css') |
| 20 | if (!defined('APP_LAYOUT')) define('APP_LAYOUT', '3CD'); |
|---|---|
| 21 | self::$html->loadLayout(APP_LAYOUT . '.html'); |
| 22 | if (self::$html->browser->matchName('MSIE', '<9')) |
| 23 | self::$html->xscript(S_IE_HACKS); |
| 24 | AJAX::Init(); |
| 25 | self::$html->xstyle(APP_LAYOUT . '.css') |
| 26 | ->meta(null, array('name' => 'description', 'content' => SITE_DESCRIPTION)) |
| 27 | ->meta(null, array('name' => 'keywords', 'content' => SITE_KEYWORDS)) |
| 28 | ->title(SITE_TITLE); |
| 26 | exit("<pre><code>$h</code></pre>"); |
|---|---|
| 27 | } |
| 28 | $request->exec(); |
| 29 | } else { |
| 30 | Layout::init(); // AJAX::Init() inside |
| 31 | } |
| 32 | $_SESSION['_'] = $sid_md5; |
| 33 | if (file_exists($app_init = PATH_APPLICATION . '/init.php')) |
| 34 | require $app_init; |
| 5 | require PATH_FRAMEWORK_SERVER_SIDE . '/Symbols.php'; |
|---|---|
| 6 | require PATH_FRAMEWORK_SERVER_SIDE . '/Core.php'; |
| 7 | require PATH_FRAMEWORK_SERVER_SIDE . '/Startup.php'; |
| 8 | require PATH_APPLICATION . '/config.php'; |
| 9 | Startup::Sequence(); |
| 10 | ?> |
Undefined index: _ADMIN in file framework/backend/Admin.php, line 32.
| 28 | /** |
|---|---|
| 29 | * Quietly checks admin access |
| 30 | */ |
| 31 | public static function Access() { |
| 32 | return (bool) $_SESSION['_ADMIN']; |
| 33 | } |
| 34 | /** |
| 35 | * Sets login and password defauts if none given in configuration |
| 36 | */ |
| 31 | ->swf('app/data/img/1_1.swf', |
|---|---|
| 32 | 'Zapraszamy na bal karnawałowy 26-go lutego (sobota) o 11:00', |
| 33 | 'banner', 150, 700, 0, false, array('targetURL' => 'wydarzenia.html')); |
| 34 | $h->export('LAYOUT_CONTENT_FILE', $content_file); |
| 35 | if (Admin::Access()) { |
| 36 | $h->export('APP_IMAGES', APP_IMAGES) |
| 37 | ->export('APP_STREAM', APP_STREAM) |
| 38 | ->export('LAYOUT_CONTENT_FILE', $content_file); |
| 39 | Layout::video_compat(); |
| 1 | <?php App::Start();?> |
|---|
| 30 | Layout::init(); // AJAX::Init() inside |
|---|---|
| 31 | } |
| 32 | $_SESSION['_'] = $sid_md5; |
| 33 | if (file_exists($app_init = PATH_APPLICATION . '/init.php')) |
| 34 | require $app_init; |
| 35 | if (Core::$request->uri == 'admin' || Admin::Access()) Admin::LogOn(); |
| 36 | if (Admin::Access() && defined('APP_LAYOUT_EDITABLE')) |
| 37 | Layout::edit(APP_LAYOUT_EDITABLE); |
| 38 | } |
| 5 | require PATH_FRAMEWORK_SERVER_SIDE . '/Symbols.php'; |
|---|---|
| 6 | require PATH_FRAMEWORK_SERVER_SIDE . '/Core.php'; |
| 7 | require PATH_FRAMEWORK_SERVER_SIDE . '/Startup.php'; |
| 8 | require PATH_APPLICATION . '/config.php'; |
| 9 | Startup::Sequence(); |
| 10 | ?> |
Undefined index: _ADMIN in file framework/backend/Admin.php, line 32.
| 28 | /** |
|---|---|
| 29 | * Quietly checks admin access |
| 30 | */ |
| 31 | public static function Access() { |
| 32 | return (bool) $_SESSION['_ADMIN']; |
| 33 | } |
| 34 | /** |
| 35 | * Sets login and password defauts if none given in configuration |
| 36 | */ |
| 31 | } |
|---|---|
| 32 | $_SESSION['_'] = $sid_md5; |
| 33 | if (file_exists($app_init = PATH_APPLICATION . '/init.php')) |
| 34 | require $app_init; |
| 35 | if (Core::$request->uri == 'admin' || Admin::Access()) Admin::LogOn(); |
| 36 | if (Admin::Access() && defined('APP_LAYOUT_EDITABLE')) |
| 37 | Layout::edit(APP_LAYOUT_EDITABLE); |
| 38 | } |
| 39 | } |
| 5 | require PATH_FRAMEWORK_SERVER_SIDE . '/Symbols.php'; |
|---|---|
| 6 | require PATH_FRAMEWORK_SERVER_SIDE . '/Core.php'; |
| 7 | require PATH_FRAMEWORK_SERVER_SIDE . '/Startup.php'; |
| 8 | require PATH_APPLICATION . '/config.php'; |
| 9 | Startup::Sequence(); |
| 10 | ?> |
Undefined index: _ADMIN in file framework/backend/Admin.php, line 32.
| 28 | /** |
|---|---|
| 29 | * Quietly checks admin access |
| 30 | */ |
| 31 | public static function Access() { |
| 32 | return (bool) $_SESSION['_ADMIN']; |
| 33 | } |
| 34 | /** |
| 35 | * Sets login and password defauts if none given in configuration |
| 36 | */ |
| 32 | $_SESSION['_'] = $sid_md5; |
|---|---|
| 33 | if (file_exists($app_init = PATH_APPLICATION . '/init.php')) |
| 34 | require $app_init; |
| 35 | if (Core::$request->uri == 'admin' || Admin::Access()) Admin::LogOn(); |
| 36 | if (Admin::Access() && defined('APP_LAYOUT_EDITABLE')) |
| 37 | Layout::edit(APP_LAYOUT_EDITABLE); |
| 38 | } |
| 39 | } |
| 40 | ?> |
| 5 | require PATH_FRAMEWORK_SERVER_SIDE . '/Symbols.php'; |
|---|---|
| 6 | require PATH_FRAMEWORK_SERVER_SIDE . '/Core.php'; |
| 7 | require PATH_FRAMEWORK_SERVER_SIDE . '/Startup.php'; |
| 8 | require PATH_APPLICATION . '/config.php'; |
| 9 | Startup::Sequence(); |
| 10 | ?> |
Zapraszamy na bal karnawałowy 26-go lutego (sobota) o 11:00 |
Galeria![]()
|