├── .gitignore ├── README.md ├── composer.json └── src └── Phalcon ├── Bootstrap └── DefaultBootstrap.php ├── Controller └── DefaultController.php ├── Exception └── ApplicationException.php ├── Form ├── Basic.php └── Repository.php ├── Helpers ├── Analytics │ ├── GoogleAnalytics.php │ ├── LiveInternet.php │ ├── RatingMail.php │ └── YandexMetrika.php ├── AnalyticsHelper.php ├── AssetsHelper.php ├── Breadcrumb │ └── Element.php ├── BreadcrumbHelper.php ├── EmailHelper.php ├── PhoneHelper.php ├── PriceHelper.php ├── Seo │ ├── CanonicalLink.php │ ├── JsonLd.php │ ├── Meta.php │ ├── OpenGraph.php │ ├── Title.php │ └── Yandex.php ├── SeoHelper.php ├── TranslationHelper.php ├── UrlHelper.php ├── ViewHelper.php └── ViewHelperLegacy.php ├── Http └── Response │ └── Json.php ├── Model └── Repository.php ├── Mvc └── Model │ └── MetaData │ └── Memcache.php ├── Paginator ├── Adapter │ ├── NullBuilder.php │ └── QueryBuilder.php └── Paginator.php ├── Plugins ├── AnalyticsPlugin.php ├── AssetsPlugin.php ├── BreadcrumbPlugin.php ├── DispatcherExceptionPlugin.php ├── ErrorHandlingPlugin.php ├── PageContentPlugin.php ├── SeoPlugin.php ├── TranslationPlugin.php ├── UrlPlugin.php ├── ViewHelperPlugin.php ├── ViewReturnPlugin.php └── ViewTemplateName.php ├── Replacer └── Replacer.php ├── Service ├── ApplicationCookie │ └── ApplicationCookies.php ├── ApplicationCookieService.php ├── Assets │ └── Assets.php ├── AssetsService.php ├── Auth │ └── Auth.php ├── AuthService.php ├── Breadcrumb │ ├── Breadcrumb.php │ └── Element.php ├── BreadcrumbService.php ├── GeoIp │ └── GeoIp.php ├── GeoIpService.php ├── Path │ └── Path.php ├── PathService.php ├── QueueService.php ├── SentryService.php ├── Seo │ ├── Module │ │ ├── AbstractModule.php │ │ ├── CanonicalLink.php │ │ ├── JsonLd.php │ │ ├── Meta.php │ │ ├── OpenGraph.php │ │ ├── Title.php │ │ └── Yandex.php │ └── Seo.php ├── SeoService.php ├── Tag │ └── Tag.php └── TagService.php ├── Stub └── View │ └── Phtml.php ├── Task └── DefaultTask.php └── Translate └── Adapter └── Translate.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/composer.json -------------------------------------------------------------------------------- /src/Phalcon/Bootstrap/DefaultBootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Bootstrap/DefaultBootstrap.php -------------------------------------------------------------------------------- /src/Phalcon/Controller/DefaultController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Controller/DefaultController.php -------------------------------------------------------------------------------- /src/Phalcon/Exception/ApplicationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Exception/ApplicationException.php -------------------------------------------------------------------------------- /src/Phalcon/Form/Basic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Form/Basic.php -------------------------------------------------------------------------------- /src/Phalcon/Form/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Form/Repository.php -------------------------------------------------------------------------------- /src/Phalcon/Helpers/Analytics/GoogleAnalytics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Helpers/Analytics/GoogleAnalytics.php -------------------------------------------------------------------------------- /src/Phalcon/Helpers/Analytics/LiveInternet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Helpers/Analytics/LiveInternet.php -------------------------------------------------------------------------------- /src/Phalcon/Helpers/Analytics/RatingMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Helpers/Analytics/RatingMail.php -------------------------------------------------------------------------------- /src/Phalcon/Helpers/Analytics/YandexMetrika.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Helpers/Analytics/YandexMetrika.php -------------------------------------------------------------------------------- /src/Phalcon/Helpers/AnalyticsHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Helpers/AnalyticsHelper.php -------------------------------------------------------------------------------- /src/Phalcon/Helpers/AssetsHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Helpers/AssetsHelper.php -------------------------------------------------------------------------------- /src/Phalcon/Helpers/Breadcrumb/Element.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Helpers/Breadcrumb/Element.php -------------------------------------------------------------------------------- /src/Phalcon/Helpers/BreadcrumbHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Helpers/BreadcrumbHelper.php -------------------------------------------------------------------------------- /src/Phalcon/Helpers/EmailHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Helpers/EmailHelper.php -------------------------------------------------------------------------------- /src/Phalcon/Helpers/PhoneHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Helpers/PhoneHelper.php -------------------------------------------------------------------------------- /src/Phalcon/Helpers/PriceHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Helpers/PriceHelper.php -------------------------------------------------------------------------------- /src/Phalcon/Helpers/Seo/CanonicalLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Helpers/Seo/CanonicalLink.php -------------------------------------------------------------------------------- /src/Phalcon/Helpers/Seo/JsonLd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Helpers/Seo/JsonLd.php -------------------------------------------------------------------------------- /src/Phalcon/Helpers/Seo/Meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Helpers/Seo/Meta.php -------------------------------------------------------------------------------- /src/Phalcon/Helpers/Seo/OpenGraph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Helpers/Seo/OpenGraph.php -------------------------------------------------------------------------------- /src/Phalcon/Helpers/Seo/Title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Helpers/Seo/Title.php -------------------------------------------------------------------------------- /src/Phalcon/Helpers/Seo/Yandex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Helpers/Seo/Yandex.php -------------------------------------------------------------------------------- /src/Phalcon/Helpers/SeoHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Helpers/SeoHelper.php -------------------------------------------------------------------------------- /src/Phalcon/Helpers/TranslationHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Helpers/TranslationHelper.php -------------------------------------------------------------------------------- /src/Phalcon/Helpers/UrlHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Helpers/UrlHelper.php -------------------------------------------------------------------------------- /src/Phalcon/Helpers/ViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Helpers/ViewHelper.php -------------------------------------------------------------------------------- /src/Phalcon/Helpers/ViewHelperLegacy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Helpers/ViewHelperLegacy.php -------------------------------------------------------------------------------- /src/Phalcon/Http/Response/Json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Http/Response/Json.php -------------------------------------------------------------------------------- /src/Phalcon/Model/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Model/Repository.php -------------------------------------------------------------------------------- /src/Phalcon/Mvc/Model/MetaData/Memcache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Mvc/Model/MetaData/Memcache.php -------------------------------------------------------------------------------- /src/Phalcon/Paginator/Adapter/NullBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Paginator/Adapter/NullBuilder.php -------------------------------------------------------------------------------- /src/Phalcon/Paginator/Adapter/QueryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Paginator/Adapter/QueryBuilder.php -------------------------------------------------------------------------------- /src/Phalcon/Paginator/Paginator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Paginator/Paginator.php -------------------------------------------------------------------------------- /src/Phalcon/Plugins/AnalyticsPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Plugins/AnalyticsPlugin.php -------------------------------------------------------------------------------- /src/Phalcon/Plugins/AssetsPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Plugins/AssetsPlugin.php -------------------------------------------------------------------------------- /src/Phalcon/Plugins/BreadcrumbPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Plugins/BreadcrumbPlugin.php -------------------------------------------------------------------------------- /src/Phalcon/Plugins/DispatcherExceptionPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Plugins/DispatcherExceptionPlugin.php -------------------------------------------------------------------------------- /src/Phalcon/Plugins/ErrorHandlingPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Plugins/ErrorHandlingPlugin.php -------------------------------------------------------------------------------- /src/Phalcon/Plugins/PageContentPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Plugins/PageContentPlugin.php -------------------------------------------------------------------------------- /src/Phalcon/Plugins/SeoPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Plugins/SeoPlugin.php -------------------------------------------------------------------------------- /src/Phalcon/Plugins/TranslationPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Plugins/TranslationPlugin.php -------------------------------------------------------------------------------- /src/Phalcon/Plugins/UrlPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Plugins/UrlPlugin.php -------------------------------------------------------------------------------- /src/Phalcon/Plugins/ViewHelperPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Plugins/ViewHelperPlugin.php -------------------------------------------------------------------------------- /src/Phalcon/Plugins/ViewReturnPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Plugins/ViewReturnPlugin.php -------------------------------------------------------------------------------- /src/Phalcon/Plugins/ViewTemplateName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Plugins/ViewTemplateName.php -------------------------------------------------------------------------------- /src/Phalcon/Replacer/Replacer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Replacer/Replacer.php -------------------------------------------------------------------------------- /src/Phalcon/Service/ApplicationCookie/ApplicationCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Service/ApplicationCookie/ApplicationCookies.php -------------------------------------------------------------------------------- /src/Phalcon/Service/ApplicationCookieService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Service/ApplicationCookieService.php -------------------------------------------------------------------------------- /src/Phalcon/Service/Assets/Assets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Service/Assets/Assets.php -------------------------------------------------------------------------------- /src/Phalcon/Service/AssetsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Service/AssetsService.php -------------------------------------------------------------------------------- /src/Phalcon/Service/Auth/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Service/Auth/Auth.php -------------------------------------------------------------------------------- /src/Phalcon/Service/AuthService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Service/AuthService.php -------------------------------------------------------------------------------- /src/Phalcon/Service/Breadcrumb/Breadcrumb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Service/Breadcrumb/Breadcrumb.php -------------------------------------------------------------------------------- /src/Phalcon/Service/Breadcrumb/Element.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Service/Breadcrumb/Element.php -------------------------------------------------------------------------------- /src/Phalcon/Service/BreadcrumbService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Service/BreadcrumbService.php -------------------------------------------------------------------------------- /src/Phalcon/Service/GeoIp/GeoIp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Service/GeoIp/GeoIp.php -------------------------------------------------------------------------------- /src/Phalcon/Service/GeoIpService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Service/GeoIpService.php -------------------------------------------------------------------------------- /src/Phalcon/Service/Path/Path.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Service/Path/Path.php -------------------------------------------------------------------------------- /src/Phalcon/Service/PathService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Service/PathService.php -------------------------------------------------------------------------------- /src/Phalcon/Service/QueueService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Service/QueueService.php -------------------------------------------------------------------------------- /src/Phalcon/Service/SentryService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Service/SentryService.php -------------------------------------------------------------------------------- /src/Phalcon/Service/Seo/Module/AbstractModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Service/Seo/Module/AbstractModule.php -------------------------------------------------------------------------------- /src/Phalcon/Service/Seo/Module/CanonicalLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Service/Seo/Module/CanonicalLink.php -------------------------------------------------------------------------------- /src/Phalcon/Service/Seo/Module/JsonLd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Service/Seo/Module/JsonLd.php -------------------------------------------------------------------------------- /src/Phalcon/Service/Seo/Module/Meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Service/Seo/Module/Meta.php -------------------------------------------------------------------------------- /src/Phalcon/Service/Seo/Module/OpenGraph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Service/Seo/Module/OpenGraph.php -------------------------------------------------------------------------------- /src/Phalcon/Service/Seo/Module/Title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Service/Seo/Module/Title.php -------------------------------------------------------------------------------- /src/Phalcon/Service/Seo/Module/Yandex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Service/Seo/Module/Yandex.php -------------------------------------------------------------------------------- /src/Phalcon/Service/Seo/Seo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Service/Seo/Seo.php -------------------------------------------------------------------------------- /src/Phalcon/Service/SeoService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Service/SeoService.php -------------------------------------------------------------------------------- /src/Phalcon/Service/Tag/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Service/Tag/Tag.php -------------------------------------------------------------------------------- /src/Phalcon/Service/TagService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Service/TagService.php -------------------------------------------------------------------------------- /src/Phalcon/Stub/View/Phtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Stub/View/Phtml.php -------------------------------------------------------------------------------- /src/Phalcon/Task/DefaultTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Task/DefaultTask.php -------------------------------------------------------------------------------- /src/Phalcon/Translate/Adapter/Translate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sb15/phalcon-ext/HEAD/src/Phalcon/Translate/Adapter/Translate.php --------------------------------------------------------------------------------