>false; } //************************** // Detects if the current browser is based on WebKit. function DetectWebkit() { if (stripos($this->useragent, $this->engineWebKit) > -1) return $this->true; else return $this->false; } //************************** // Detects if the current browser is the Nokia S60 Open Source Browser. function DetectS60OssBrowser() { //First, test for WebKit, then make sure it's either Symbian or S60. if ($this->DetectWebkit() == $this->true) { if (stripos($this->useragent, $this->deviceSymbian) > -1 || stripos($this->useragent, $this->deviceS60) > -1) { return $this->true; } else return $this->false; } else return $this->false; } //************************** // Detects if the current device is any Symbian OS-based device, // including older S60, Series 70, Series 80, Series 90, and UIQ, // or other browsers running on these devices. function DetectSymbianOS() { if (stripos($this->useragent, $this->deviceSymbian) > -1 || stripos($this->useragent, $this->deviceS60) > -1 || stripos($this->useragent, $this->deviceS70) > -1 || stripos($this->useragent, $this->deviceS80) > -1 || stripos($this->useragent, $this->deviceS90) > -1) return $this->true; else return $this->false; } //************************** // Detects if the current browser is a // Windows Phone 7 device. function DetectWindowsPhone7() { if (stripos($this->useragent, $this->deviceWinPhone7) > -1) return $this->true; else return $this->false; } //************************** // Detects if the current browser is a Windows Mobile device. // Excludes Windows Phone 7 devices. // Focuses on Windows Mobile 6.xx and earlier. function DetectWindowsMobile() { if ($this->DetectWindowsPhone7() == $this->true) return $this->false; //Most devices use 'Windows CE', but some report 'iemobile' // and some older ones report as 'PIE' for Pocket IE. if (stripos($this->useragent, $this->deviceWinMob) > -1 || stripos($this->useragent, $this->deviceIeMob) > -1 || stripos($this->useragent, $this->enginePie) > -1) return $this->true; //Test for Windows Mobile PPC but not old Macintosh PowerPC. if (stripos($this->useragent, $this->devicePpc) > -1 && !(stripos($this->useragent, $this->deviceMacPpc) > 1)) return $this->true; //Test for certain Windwos Mobile-based HTC devices. if (stripos($this->useragent, $this->manuHtc) > -1 && stripos($this->useragent, $this->deviceWindows) > -1) return $this->true; if ($this->DetectWapWml() == $this->true && stripos($this->useragent, $this->deviceWindows) > -1) return $this->true; else return $this->false; } //************************** // Detects if the current browser is any BlackBerry device. // Includes the PlayBook. function DetectBlackBerry() { if ((stripos($this->useragent, $this->deviceBB) > -1) || (stripos($this->httpaccept, $this->vndRIM) > -1)) return $this->true; else return $this->false; } //************************** // Detects if the current browser is on a BlackBerry tablet device. // Examples: PlayBook function DetectBlackBerryTablet() { if ((stripos($this->useragent, $this->deviceBBPlaybook) > -1)) return $this->true; else return $this->false; } //************************** // Detects if the current browser is a BlackBerry phone device AND uses a // WebKit-based browser. These are signatures for the new BlackBerry OS 6. // Examples: Torch. Includes the Playbook. function DetectBlackBerryWebKit() { if (($this->DetectBlackBerry() == $this->true) && ($this->DetectWebkit() == $this->true)) return $this->true; else return $this->false; } //************************** // Detects if the current browser is a BlackBerry Touch phone device with // a large screen, such as the Storm, Torch, and Bold Touch. Excludes the Playbook. function DetectBlackBerryTouch() { if ((stripos($this->useragent, $this->deviceBBStorm) > -1) || (stripos($this->useragent, $this->deviceBBTorch) > -1) || (stripos($this->useragent, $this->deviceBBBoldTouch) > -1) || (stripos($this->useragent, $this->deviceBBCurveTouch) > -1)) return $this->true; else return $this->false; } //************************** // Detects if the current browser is a BlackBerry OS 5 device AND // has a more capable recent browser. Excludes the Playbook. // Examples, Storm, Bold, Tour, Curve2 // Excludes the new BlackBerry OS 6 and 7 browser!! function DetectBlackBerryHigh() { //Disambiguate for BlackBerry OS 6 or 7 (WebKit) browser if ($this->DetectBlackBerryWebKit() == $this->true) return $this->false; if ($this->DetectBlackBerry() == $this->true) { if (($this->DetectBlackBerryTouch() == $this->true) || stripos($this->useragent, $this->deviceBBBold) > -1 || stripos($this->useragent, $this->deviceBBTour) > -1 || stripos($this->useragent, $this->deviceBBCurve) > -1) { return $this->true; } else return $this->false; } else return $this->false; } //************************** // Detects if the current browser is a BlackBerry device AND // has an older, less capable browser. // Examples: Pearl, 8800, Curve1. function DetectBlackBerryLow() { if ($this->DetectBlackBerry() == $this->true) { //Assume that if it's not in the High tier, then it's Low. if (($this->DetectBlackBerryHigh() == $this->true) || ($this->DetectBlackBerryWebKit() == $this->true)) return $this->false; else return $this->true; } else return $this->false; } //************************** // Detects if the current browser is on a PalmOS device. function DetectPalmOS() { //Most devices nowadays report as 'Palm', but some older ones reported as Blazer or Xiino. if (stripos($this->useragent, $this->devicePalm) > -1 || stripos($this->useragent, $this->engineBlazer) > -1 || stripos($this->useragent, $this->engineXiino) > -1) { //Make sure it's not WebOS first if ($this->DetectPalmWebOS() == $this->true) return $this->false; else return $this->true; } else return $this->false; } //************************** // Detects if the current browser is on a Palm device // running the new WebOS. function DetectPalmWebOS() { if (stripos($this->useragent, $this->deviceWebOS) > -1) return $this->true; else return $this->false; } //************************** // Detects if the current browser is on an HP tablet running WebOS. function DetectWebOSTablet() { if ((stripos($this->useragent, $this->deviceWebOShp) > -1) && (stripos($this->useragent, $this->deviceTablet) > -1)) return $this->true; else return $this->false; } //************************** // Detects if the current browser is a // Garmin Nuvifone. function DetectGarminNuvifone() { if (stripos($this->useragent, $this->deviceNuvifone) > -1) return $this->true; else return $this->false; } //************************** // Check to see whether the device is any device // in the 'smartphone' category. function DetectSmartphone() { global $isIphone, $isAndroidPhone, $isTierIphone; se; } //************************** // Detects if the current browser is a Sony Mylo device. function DetectSonyMylo() { if (stripos($this->useragent, $this->manuSony) > -1) { if ((stripos($this->useragent, $this->qtembedded) > -1) || (stripos($this->useragent, $this->mylocom2) > -1)) { return $this->true; } else return $this->false; } else return $this->false; } //************************** // The longer and more thorough way to detect for a mobile device. // Will probably detect most feature phones, // smartphone-class devices, Internet Tablets, // Internet-enabled game consoles, etc. // This ought to catch a lot of the more obscure and older devices, also -- // but no promises on thoroughness! function DetectMobileLong() { if ($this->DetectMobileQuick() == $this->true) return $this->true; if ($this->DetectGameConsole() == $this->true) return $this->true; if ($this->DetectSonyMylo() == $this->true) return $this->true; //Detect older phones from certain manufacturers and operators. if (stripos($this->useragent, $this->uplink) > -1) return $this->true; if (stripos($this->useragent, $this->manuSonyEricsson) > -1) return $this->true; if (stripos($this->useragent, $this->manuericsson) > -1) return $this->true; if (stripos($this->useragent, $this->manuSamsung1) > -1) return $this->true; if (stripos($this->useragent, $this->svcDocomo) > -1) return $this->true; if (stripos($this->useragent, $this->svcKddi) > -1) return $this->true; if (stripos($this->useragent, $this->svcVodafone) > -1) return $this->true; else return $this->false; } //***************************** // For Mobile Web Site Design //***************************** //************************** // The quick way to detect for a tier of devices. // This method detects for the new generation of // HTML 5 capable, larger screen tablets. // Includes iPad, Android (e.g., Xoom), BB Playbook, WebOS, etc. function DetectTierTablet() { if (($this->DetectIpad() == $this->true) || ($this->DetectAndroidTablet() == $this->true) || ($this->DetectBlackBerryTablet() == $this->true) || ($this->DetectWebOSTablet() == $this->true)) return $this->true; else return $this->false; } //************************** // The quick way to detect for a tier of devices. // This method detects for devices which can // display iPhone-optimized web content. // Includes iPhone, iPod Touch, Android, Windows Phone 7, WebOS, etc. function DetectTierIphone() { if (($this->isIphone == $this->true) || ($this->isAndroidPhone == $this->true)) return $this->true; if (($this->DetectBlackBerryWebKit() == $this->true) && ($this->DetectBlackBerryTouch() == $this->true)) return $this->true; if ($this->DetectWindowsPhone7() == $this->true) return $this->true; if ($this->DetectPalmWebOS() == $this->true) return $this->true; if ($this->DetectGarminNuvifone() == $this->true) return $this->true; else return $this->false; } //************************** // The quick way to detect for a tier of devices. // This method detects for devices which are likely to be capable // of viewing CSS content optimized for the iPhone, // but may not necessarily support JavaScript. // Excludes all iPhone Tier devices. function DetectTierRichCss() { if ($this->DetectMobileQuick() == $this->true) { //Exclude iPhone Tier and e-Ink Kindle devices if (($this->DetectTierIphone() == $this->true) || ($this->DetectKindle() == $this->true)) return $this->false; //The following devices are explicitly ok. if ($this->DetectWebkit() == $this->true) //Any WebKit return $this->true; if ($this->DetectS60OssBrowser() == $this->true) return $this->true; //Note: 'High' BlackBerry devices ONLY if ($this->DetectBlackBerryHigh() == $this->true) return $this->true; //Older Windows 'Mobile' isn't good enough for iPhone Tier. if ($this->DetectWindowsMobile() == $this->true) return $this->true; if (stripos($this->useragent, $this->engineTelecaQ) > -1) return $this->true; //default else return $this->false; } else return $this->false; } //************************** // The quick way to detect for a tier of devices. // This method detects for all other types of phones, // but excludes the iPhone and RichCSS Tier devices. function DetectTierOtherPhones() { //Exclude devices in the other 2 categories if (($this->DetectMobileLong() == $this->true) && ($this->DetectTierIphone() == $this->false) && ($this->DetectTierRichCss() == $this->false)) return $this->true; else return $this->false; } //Was informed by a MobileESP user that it's a best practice // to omit the closing ?> marks here. They can sometimes // cause errors with HTML headers. } $this->UTILS = new cs_utils(); $this->UTILS->_PATH = C_PATH.'/'.cs_utils; $this->UTILS->PATH = C_PATH.'/'.cs_utils; $this->UTILS->_DIR = C_DIR.'/'.cs_utils; $this->UTILS->DIR = C_DIR.'/'.cs_utils; ?> Pszczynska.pl – Pszczyński Dziennik Internetowy

Świąteczny Weekend Zakupów w Pszczynie

Od wielu lat w okresie bożonarodzeniowym spotykamy się na Pszczyńskim Jarmarku Świątecznym. Z powodu pandemii w tym roku to tradycyjne wydarzenie nie odbędzie się. W ostatni handlowy weekend tego roku, od 18 do 20 grudnia, zapraszamy natomiast na Świąteczny Weekend Zakupów. Mimo braku koncertów kolęd, świątecznych warsztatów dla dzieci i karuzeli, miasto wypełni świąteczna aura pomagania i solidar
Art. spons. Co wyróżnia najpopularniejsze odżywki do rzęs
Art. spons. Dlaczego warto zamontować panele fotowoltaiczne w domu?
Art. spons. Dlaczego warto zamontować panele fotowoltaiczne w domu?
Art. spons. Szanowni Moi Kochani Ślązacy!
Art. spons. Szanowni Moi Kochani Ślązacy!
Art. spons. Sprawdź jak skuteczne pozycjonowanie stron zapewnia zyski ze sprzedaży w sieci
Art. spons. Sprawdź jak skuteczne pozycjonowanie stron zapewnia zyski ze sprzedaży w sieci
35 lat Muzeum Prasy Śląskiej
Uhonorowani przez Sybiraków
Apel w sprawie trudnej sytuacji Uzdrowiska

Pszczyna: Budżet na 2021 rok przyjęty

Przyszłoroczne wydatki gminy Pszczyna wyniosą niemal 324 mln zł. Taką decyzję podjęli radni, którzy opowiedzieli się za przyjęciem uchwały budżetowej. Dwudziestu jeden radnych głosowało za przyjęciem dokumentu, przy jednym głosie wstrzymującym
Konkurs "Pierwsze zdjęcie na Instagramie"
Budżet powiatu na trudne czasy uchwalony
12 wzruszających historii pszczyńskich Sybiraków spisanych w książce
W czwartek i piątek utrudnienia na ul. Bielskiej w Pszczynie
Pszczyna pozyskała 4 mln zł na fotowoltaikę
Burmistrz spotkał się z ministrem klimatu
Budżet przyjęty. Ponad 10 mln zł na goczałkowickie inwestycje
Nowa sygnalizacja świetlna w Pawłowicach
3 mln zł dotacji na termomodernizację Zespołu Szkolno-Przedszkolnego w Pszczynie
Powstał chodnik do Szkoły Podstawowej nr 13 w Wiśle Małej
Zupa Wigilijna trafi do pszczyńskich jadłodzielni

Otwarcie lodowiska w najbliższy piątek!

W najbliższy piątek 18 grudnia o godzinie 15.00 zostanie otwarte lodowisko na pszczyńskim rynku
Koncert Hard Rockets Live w internecie
Burmistrz spotkał się z laureatami konkursu "Piękna Wieś Województwa Śląskiego"
Parking w Łące oddany do użytku
Nowe połączenie drogowe już gotowe
Weekend Cudów w powiecie pszczyńskim
Samorządowcy omawiali wspólne kierunki transformacji
Świąteczny Weekend Zakupów w Pszczynie
Bilet zimowy do Skansenu
Sytuacja epidemiologiczna: 5 - 11 grudnia
Przebudowano kilometr ul. Polnej
Jubileusze pożycia małżeńskiego
Kluczowa droga powiatowa w Piasku zostanie przebudowana
Pierwszy etap przebudowy szpitala zakończony
#potrzebUEmy Unii Europejskiej
Życzenia dla Związku Kombatantów RP i Byłych Więźniów Politycznych
Skrzyżowanie w Miedźnej wyremontowane
Rondo w centrum Pszczyny jest już gotowe
Stop Smog: 86 wniosków zakwalifikowanych
Mikołaj sprawił radość chorym w Zakładzie Pielęgnacyjno-Opiekuńczym
Burmistrz spotkał się z prezes Polskiego Stowarzyszenia Diabetyków Koło w Pszczynie
Tysiące środków ochronnych dla pszczyńskich poradni specjalistycznych
Wystawa "Piękno zamknięte w kamieniu"
Konkurs dla rodzin „Pawłowickie kolędowanie”
Apel Śląskiego Związku Gmin i Powiatów o pomoc w walce ze smogiem
Wręczono nagrody dla pięknych wsi z gminy Pszczyna
Centrum przesiadkowe wyróżnione w konkursie Najlepsza Przestrzeń Publiczna
Sprzęt trafił do dzieci z rodzin zastępczych i domów dziecka
„Zielone płuca Poligonu - strefa świeżego powietrza”
Uczennica PZS nr 2 wygrała odcinek Szansy na sukces
Zebrano ponad 13 ton żołędzi i kasztanów!
Zostań wolontariuszem w rodzinie zastępczej
Frezują asfalt na DW 933 w Miedźnej
29. Finał Wielkiej Orkiestry Świątecznej Pomocy!
Sytuacja epidemiologiczna: 28 listopada - 4 grudnia
17 interwencji związanych z sezonem grzewczym
W najbliższą niedzielę Orlik wraca do gry
Stop Smog: Wnioski po weryfikacji
Tegoroczne Mikołajki bez wielkich wydarzeń na pszczyńskim rynku
Art. spons. Rossmann GO - nowy wymiar zakupów
Kiermasze Smakołyków dla Maciusia w Gminie Suszec!
Uważajmy na drogach!
Cztery medale w PZLA Mistrzostwach Polski w Biegach Przełajowych
SQL: 10