Commit c8a3b6d1b483c070adbb53d47439903a5fc014d4

Authored by Administrator
1 parent 3ba6b877

firs page

Showing 710 changed files with 49 additions and 41 deletions   Show diff stats
LICENSE.md 100644 → 100755
README.md 100644 → 100755
backend/assets/AppAsset.php 100644 → 100755
backend/config/.gitignore 100644 → 100755
backend/config/bootstrap.php 100644 → 100755
backend/config/main.php 100644 → 100755
... ... @@ -27,6 +27,9 @@ return [
27 27 'identityClass' => 'common\models\User',
28 28 'enableAutoLogin' => true,
29 29 ],
  30 + 'request' => [
  31 + 'class' => 'common\components\LangRequest'
  32 + ],
30 33 'urlManager' => [
31 34 'enablePrettyUrl' => true,
32 35 'showScriptName' => false,
... ...
backend/config/params.php 100644 → 100755
backend/controllers/AdminMenuController.php 100644 → 100755
backend/controllers/BlogController.php 100644 → 100755
backend/controllers/ImportController.php 100644 → 100755
backend/controllers/LanguageController.php 100644 → 100755
backend/controllers/MenuController.php 100644 → 100755
backend/controllers/MenuLocationController.php 100644 → 100755
backend/controllers/NewOptionsLangController.php 100644 → 100755
backend/controllers/OptionController.php 100644 → 100755
backend/controllers/SettingsController.php 100644 → 100755
backend/controllers/SiteController.php 100644 → 100755
backend/controllers/TerminController.php 100644 → 100755
backend/controllers/UserController.php 100644 → 100755
backend/models/.gitkeep 100644 → 100755
backend/models/AdminMenu.php 100644 → 100755
backend/models/AdminMenuAccessGroup.php 100644 → 100755
backend/models/AdminMenuAccessUser.php 100644 → 100755
backend/models/AdminMenuSearch.php 100644 → 100755
backend/models/Import.php 100644 → 100755
backend/models/Language.php 100644 → 100755
backend/models/LanguageSearch.php 100644 → 100755
backend/models/Menu.php 100644 → 100755
backend/models/MenuLocation.php 100644 → 100755
backend/models/MenuLocationLang.php 100644 → 100755
backend/models/MenuLocationSearch.php 100644 → 100755
backend/models/MenuSearch.php 100644 → 100755
backend/models/NewOptions.php 100644 → 100755
backend/models/NewOptionsLang.php 100644 → 100755
backend/models/NewOptionsLangSearch.php 100644 → 100755
backend/models/Profile.php 100644 → 100755
backend/models/Termin.php 100644 → 100755
backend/models/TerminLang.php 100644 → 100755
backend/models/TerminRelation.php 100644 → 100755
backend/models/TerminSearch.php 100644 → 100755
backend/models/TerminStructure.php 100644 → 100755
backend/models/UserSearch.php 100644 → 100755
backend/runtime/.gitignore 100644 → 100755
backend/views/_language/_form.php 100644 → 100755
backend/views/_language/_search.php 100644 → 100755
backend/views/_language/create.php 100644 → 100755
backend/views/_language/index.php 100644 → 100755
backend/views/_language/update.php 100644 → 100755
backend/views/_language/view.php 100644 → 100755
backend/views/admin-menu/_form.php 100644 → 100755
backend/views/admin-menu/_search.php 100644 → 100755
backend/views/admin-menu/create.php 100644 → 100755
backend/views/admin-menu/index.php 100644 → 100755
backend/views/admin-menu/update.php 100644 → 100755
backend/views/admin-menu/view.php 100644 → 100755
backend/views/blog/articles.php 100644 → 100755
backend/views/import/index.php 100644 → 100755
backend/views/language/_form_adress.php 100644 → 100755
backend/views/language/_form_adress_edit.php 100644 → 100755
backend/views/language/_search.php 100644 → 100755
backend/views/language/create.php 100644 → 100755
backend/views/language/create_adress.php 100644 → 100755
backend/views/language/index.php 100644 → 100755
backend/views/language/layout.php 100644 → 100755
backend/views/language/update.php 100644 → 100755
backend/views/language/update_adress.php 100644 → 100755
backend/views/language/view.php 100644 → 100755
backend/views/language/view_adress.php 100644 → 100755
backend/views/layouts/content.php 100644 → 100755
backend/views/layouts/header.php 100644 → 100755
backend/views/layouts/left.php 100644 → 100755
backend/views/layouts/main-login.php 100644 → 100755
backend/views/layouts/main.php 100644 → 100755
backend/views/layouts/settings.php 100644 → 100755
backend/views/menu-location/_form.php 100644 → 100755
backend/views/menu-location/_search.php 100644 → 100755
backend/views/menu-location/create.php 100644 → 100755
backend/views/menu-location/index.php 100644 → 100755
backend/views/menu-location/update.php 100644 → 100755
backend/views/menu-location/view.php 100644 → 100755
backend/views/menu/_form.php 100644 → 100755
backend/views/menu/_search.php 100644 → 100755
backend/views/menu/create.php 100644 → 100755
backend/views/menu/index.php 100644 → 100755
backend/views/menu/update.php 100644 → 100755
backend/views/menu/view.php 100644 → 100755
backend/views/new-options-lang/_form.php 100644 → 100755
backend/views/new-options-lang/_search.php 100644 → 100755
backend/views/new-options-lang/create.php 100644 → 100755
backend/views/new-options-lang/index.php 100644 → 100755
backend/views/new-options-lang/update.php 100644 → 100755
backend/views/new-options-lang/view.php 100644 → 100755
backend/views/option/_form.php 100644 → 100755
backend/views/option/_form_edit.php 100644 → 100755
backend/views/option/_search.php 100644 → 100755
backend/views/option/create.php 100644 → 100755
backend/views/option/index.php 100644 → 100755
backend/views/option/update.php 100644 → 100755
backend/views/option/view.php 100644 → 100755
backend/views/settings/index.php 100644 → 100755
backend/views/site/error.php 100644 → 100755
backend/views/site/index.php 100644 → 100755
backend/views/site/login.php 100644 → 100755
backend/views/site/profile.php 100644 → 100755
backend/views/site/requests.php 100644 → 100755
backend/views/termin/_article_form.php 100644 → 100755
backend/views/termin/_form.php 100644 → 100755
backend/views/termin/_search.php 100644 → 100755
backend/views/termin/create.php 100644 → 100755
backend/views/termin/index.php 100644 → 100755
backend/views/termin/update.php 100644 → 100755
backend/views/termin/view.php 100644 → 100755
backend/views/user/_form.php 100644 → 100755
backend/views/user/_search.php 100644 → 100755
backend/views/user/create.php 100644 → 100755
backend/views/user/index.php 100644 → 100755
backend/views/user/update.php 100644 → 100755
backend/views/user/view.php 100644 → 100755
backend/web/.gitignore 100644 → 100755
backend/web/assets/.gitignore 100644 → 100755
backend/web/css/flags32.css 100644 → 100755
backend/web/css/language.css 100644 → 100755
backend/web/css/option.css 100644 → 100755
backend/web/css/site.css 100644 → 100755
backend/web/favicon.ico 100644 → 100755
No preview for this file type
backend/web/images/flags32.png 100644 → 100755

133 KB | W: | H:

133 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
backend/web/js/language.js 100644 → 100755
backend/web/js/option.js 100644 → 100755
backend/web/robots.txt 100644 → 100755
common/components/LangRequest.php 100644 → 100755
common/components/LangUrlManager.php 100644 → 100755
common/components/Request.php 100644 → 100755
common/components/developeruz/db_rbac/LICENSE 100644 → 100755
common/components/developeruz/db_rbac/README.md 100644 → 100755
common/components/developeruz/db_rbac/Yii2DbRbac.php 100644 → 100755
common/components/developeruz/db_rbac/behaviors/AccessBehavior.php 100644 → 100755
common/components/developeruz/db_rbac/composer.json 100644 → 100755
common/components/developeruz/db_rbac/controllers/AccessController.php 100644 → 100755
common/components/developeruz/db_rbac/controllers/UserController.php 100644 → 100755
common/components/developeruz/db_rbac/interfaces/UserRbacInterface.php 100644 → 100755
common/components/developeruz/db_rbac/messages/en/db_rbac.php 100644 → 100755
common/components/developeruz/db_rbac/views/access/addPermission.php 100644 → 100755
common/components/developeruz/db_rbac/views/access/addRole.php 100644 → 100755
common/components/developeruz/db_rbac/views/access/permission.php 100644 → 100755
common/components/developeruz/db_rbac/views/access/role.php 100644 → 100755
common/components/developeruz/db_rbac/views/access/updatePermission.php 100644 → 100755
common/components/developeruz/db_rbac/views/access/updateRole.php 100644 → 100755
common/components/developeruz/db_rbac/views/user/view.php 100644 → 100755
common/components/nodge/eauth/.gitignore 100644 → 100755
common/components/nodge/eauth/CHANGELOG.md 100644 → 100755
common/components/nodge/eauth/LICENSE 100644 → 100755
common/components/nodge/eauth/README.md 100644 → 100755
common/components/nodge/eauth/composer.json 100644 → 100755
common/components/nodge/eauth/src/Bootstrap.php 100644 → 100755
common/components/nodge/eauth/src/EAuth.php 100644 → 100755
common/components/nodge/eauth/src/ErrorException.php 100644 → 100755
common/components/nodge/eauth/src/IAuthService.php 100644 → 100755
common/components/nodge/eauth/src/RedirectWidget.php 100644 → 100755
common/components/nodge/eauth/src/ServiceBase.php 100644 → 100755
common/components/nodge/eauth/src/Widget.php 100644 → 100755
common/components/nodge/eauth/src/assets/WidgetAssetBundle.php 100644 → 100755
common/components/nodge/eauth/src/assets/css/eauth.css 100644 → 100755
common/components/nodge/eauth/src/assets/images/auth-src.png 100644 → 100755

19 KB | W: | H:

19 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
common/components/nodge/eauth/src/assets/images/auth.png 100644 → 100755

6.18 KB | W: | H:

6.18 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
common/components/nodge/eauth/src/assets/js/eauth.js 100644 → 100755
common/components/nodge/eauth/src/messages/blank/eauth.php 100644 → 100755
common/components/nodge/eauth/src/messages/de/eauth.php 100644 → 100755
common/components/nodge/eauth/src/messages/en/eauth.php 100644 → 100755
common/components/nodge/eauth/src/messages/ru/eauth.php 100644 → 100755
common/components/nodge/eauth/src/messages/uk/eauth.php 100644 → 100755
common/components/nodge/eauth/src/oauth/HttpClient.php 100644 → 100755
common/components/nodge/eauth/src/oauth/ServiceBase.php 100644 → 100755
common/components/nodge/eauth/src/oauth/SessionTokenStorage.php 100644 → 100755
common/components/nodge/eauth/src/oauth1/Service.php 100644 → 100755
common/components/nodge/eauth/src/oauth1/ServiceProxy.php 100644 → 100755
common/components/nodge/eauth/src/oauth2/Service.php 100644 → 100755
common/components/nodge/eauth/src/oauth2/ServiceProxy.php 100644 → 100755
common/components/nodge/eauth/src/openid/ControllerBehavior.php 100644 → 100755
common/components/nodge/eauth/src/openid/Service.php 100644 → 100755
common/components/nodge/eauth/src/services/FacebookOAuth2Service.php 100644 → 100755
common/components/nodge/eauth/src/services/GitHubOAuth2Service.php 100644 → 100755
common/components/nodge/eauth/src/services/GoogleOAuth2Service.php 100644 → 100755
common/components/nodge/eauth/src/services/InstagramOAuth2Service.php 100644 → 100755
common/components/nodge/eauth/src/services/LinkedinOAuth1Service.php 100644 → 100755
common/components/nodge/eauth/src/services/LinkedinOAuth2Service.php 100644 → 100755
common/components/nodge/eauth/src/services/LiveOAuth2Service.php 100644 → 100755
common/components/nodge/eauth/src/services/MailruOAuth2Service.php 100644 → 100755
common/components/nodge/eauth/src/services/OdnoklassnikiOAuth2Service.php 100644 → 100755
common/components/nodge/eauth/src/services/SteamOpenIDService.php 100644 → 100755
common/components/nodge/eauth/src/services/TwitterOAuth1Service.php 100644 → 100755
common/components/nodge/eauth/src/services/VKontakteOAuth2Service.php 100644 → 100755
common/components/nodge/eauth/src/services/YahooOpenIDService.php 100644 → 100755
common/components/nodge/eauth/src/services/YandexOAuth2Service.php 100644 → 100755
common/components/nodge/eauth/src/services/extended/FacebookOAuth2Service.php 100644 → 100755
common/components/nodge/eauth/src/services/extended/GitHubOAuth2Service.php 100644 → 100755
common/components/nodge/eauth/src/services/extended/MailruOAuth2Service.php 100644 → 100755
common/components/nodge/eauth/src/services/extended/OdnoklassnikiOAuth2Service.php 100644 → 100755
common/components/nodge/eauth/src/services/extended/TwitterOAuth1Service.php 100644 → 100755
common/components/nodge/eauth/src/services/extended/VKontakteOAuth2Service.php 100644 → 100755
common/components/nodge/eauth/src/views/redirect.php 100644 → 100755
common/components/nodge/eauth/src/views/widget.php 100644 → 100755
common/components/nodge/lightopenid/CHANGELOG.md 100644 → 100755
common/components/nodge/lightopenid/LICENSE 100644 → 100755
common/components/nodge/lightopenid/README.md 100644 → 100755
common/components/nodge/lightopenid/USAGE.md 100644 → 100755
common/components/nodge/lightopenid/composer.json 100644 → 100755
common/components/nodge/lightopenid/example-google.php 100644 → 100755
common/components/nodge/lightopenid/example-google_apps.php 100644 → 100755
common/components/nodge/lightopenid/example.php 100644 → 100755
common/components/nodge/lightopenid/openid.php 100644 → 100755
common/components/nodge/lightopenid/provider/example-mysql.php 100644 → 100755
common/components/nodge/lightopenid/provider/example.php 100644 → 100755
common/components/nodge/lightopenid/provider/provider.php 100644 → 100755
common/components/rules/CommentRule.php 100644 → 100755
common/components/rules/DeleteRule.php 100644 → 100755
common/components/rules/UpdateRule.php 100644 → 100755
common/components/rules/ViewRule.php 100644 → 100755
common/config/.gitignore 100644 → 100755
common/config/bootstrap.php 100644 → 100755
common/config/main.php 100644 → 100755
... ... @@ -3,7 +3,7 @@ return [
3 3 'vendorPath' => dirname(dirname(__DIR__)) . '/vendor',
4 4 'modules' => [
5 5 'permit' => [
6   - 'class' => 'app\modules\db_rbac\Yii2DbRbac',
  6 + 'class' => 'common\components\developeruz\db_rbac\Yii2DbRbac',
7 7 'params' => [
8 8 'userClass' => 'common\models\User'
9 9 ]
... ... @@ -28,25 +28,23 @@ return [
28 28 '<module:\w+>/<controller:\w+>/<action:(\w|-)+>/<id:\d+>' => '<module>/<controller>/<action>',
29 29 ]
30 30 ],
31   - 'request' => [
32   - 'class' => 'common\components\LangRequest'
33   - ],
  31 +
34 32 'i18n' => [
35 33 'translations' => [
36 34 '*' => [
37 35 'class' => 'yii\i18n\PhpMessageSource',
38   - 'basePath' => '@common/translation',
  36 + 'basePath' => '@common/translation',
39 37 'fileMap' => [
40 38 'app' => 'app.php',
41   - 'app/error' => 'error.php',
  39 + 'app/error' => 'error.php',
42 40 ],
43 41 ],
44 42 'app' => [
45 43 'class' => 'yii\i18n\PhpMessageSource',
46   - 'basePath' => '@common/translation',
  44 + 'basePath' => '@common/translation',
47 45 'fileMap' => [
48 46 'app' => 'app.php',
49   - 'app/error' => 'error.php',
  47 + 'app/error' => 'error.php',
50 48 ],
51 49 ]
52 50 ],
... ... @@ -54,9 +52,9 @@ return [
54 52 'authManager' => [
55 53 'class' => 'yii\rbac\DbManager',
56 54 ],
57   -
  55 +
58 56 //подключаем конфигурации API соц сетей для авторизации
59   -
  57 +
60 58 'eauth' => [
61 59 'class' => 'nodge\eauth\EAuth',
62 60 'popup' => true, // Use the popup window instead of redirecting.
... ... @@ -156,7 +154,7 @@ return [
156 154 ],
157 155 ],
158 156 ],
159   -
  157 +
160 158 // (optionally) you can configure logging
161 159 'log' => [
162 160 'targets' => [
... ... @@ -168,7 +166,7 @@ return [
168 166 ],
169 167 ],
170 168 ],
171   -
  169 +
172 170 /*========End=======
173 171 *end api sicial
174 172 * */
... ...
common/config/params-local.php 100644 → 100755
common/config/params.php 100644 → 100755
common/mail/layouts/html.php 100644 → 100755
common/mail/layouts/text.php 100644 → 100755
common/mail/passwordResetToken-html.php 100644 → 100755
common/mail/passwordResetToken-text.php 100644 → 100755
common/models/ActiveRecordRule.php 100644 → 100755
common/models/Catalog.php 100644 → 100755
common/models/Language.php 100644 → 100755
common/models/LoginForm.php 100644 → 100755
common/models/Media.php 100644 → 100755
common/models/MenuTree.php 100644 → 100755
common/models/OptionHelper.php 100644 → 100755
common/models/Social.php 100644 → 100755
common/models/SqlQueryBuilder.php 100644 → 100755
common/models/Tools.php 100644 → 100755
common/models/User.php 100644 → 100755
common/modules/blog/Module.php 100644 → 100755
common/modules/blog/behaviors/Autocomplete.php 100644 → 100755
common/modules/blog/config.php 100644 → 100755
common/modules/blog/controllers/AjaxController.php 100644 → 100755
common/modules/blog/controllers/ArticleController.php 100644 → 100755
common/modules/blog/controllers/CategoryController.php 100644 → 100755
common/modules/blog/controllers/DefaultController.php 100644 → 100755
common/modules/blog/controllers/MediaController.php 100644 → 100755
common/modules/blog/controllers/TestController.php 100644 → 100755
common/modules/blog/models/Article.php 100644 → 100755
common/modules/blog/models/ArticleCategory.php 100644 → 100755
common/modules/blog/models/ArticleCategoryLang.php 100644 → 100755
common/modules/blog/models/ArticleCategoryMedia.php 100644 → 100755
common/modules/blog/models/ArticleLang.php 100644 → 100755
common/modules/blog/models/ArticleMedia.php 100644 → 100755
common/modules/blog/models/ArticleToCategory.php 100644 → 100755
common/modules/blog/views/ajax/_article_form.php 100644 → 100755
common/modules/blog/views/ajax/_article_form_test.php 100644 → 100755
common/modules/blog/views/ajax/_article_media_form.php 100644 → 100755
common/modules/blog/views/ajax/_category_form.php 100644 → 100755
common/modules/blog/views/article/_form.php 100644 → 100755
common/modules/blog/views/article/create.php 100644 → 100755
common/modules/blog/views/article/index.php 100644 → 100755
common/modules/blog/views/article/update.php 100644 → 100755
common/modules/blog/views/category/_form.php 100644 → 100755
common/modules/blog/views/category/create.php 100644 → 100755
common/modules/blog/views/category/index.php 100644 → 100755
common/modules/blog/views/category/update.php 100644 → 100755
common/modules/blog/views/default/index.php 100644 → 100755
common/modules/blog/views/media/index.php 100644 → 100755
common/modules/blog/views/test/index.php 100644 → 100755
common/translation/ru/app.php 100644 → 100755
common/translation/uk/app.php 100644 → 100755
common/widgets/Alert.php 100644 → 100755
common/widgets/Multilang.php 100644 → 100755
common/widgets/Multilanguage.php 100644 → 100755
common/widgets/views/multilang-begin.php 100644 → 100755
common/widgets/views/multilang-end.php 100644 → 100755
common/widgets/views/multilanguage-begin.php 100644 → 100755
common/widgets/views/multilanguage-end.php 100644 → 100755
composer.json 100644 → 100755
composer.lock
... ... @@ -4,7 +4,7 @@
4 4 "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
5 5 "This file is @generated automatically"
6 6 ],
7   - "hash": "7f5c25d428fdc1b8171eeefb33740f46",
  7 + "hash": "e9b955ba46cc8543c15ffcde1924e173",
8 8 "content-hash": "269319a9b7db2499c82b3ac2409e9b8d",
9 9 "packages": [
10 10 {
... ... @@ -49,20 +49,20 @@
49 49 },
50 50 {
51 51 "name": "bower-asset/bootstrap",
52   - "version": "v3.3.5",
  52 + "version": "v3.3.6",
53 53 "source": {
54 54 "type": "git",
55 55 "url": "https://github.com/twbs/bootstrap.git",
56   - "reference": "16b48259a62f576e52c903c476bd42b90ab22482"
  56 + "reference": "81df608a40bf0629a1dc08e584849bb1e43e0b7a"
57 57 },
58 58 "dist": {
59 59 "type": "zip",
60   - "url": "https://api.github.com/repos/twbs/bootstrap/zipball/16b48259a62f576e52c903c476bd42b90ab22482",
61   - "reference": "16b48259a62f576e52c903c476bd42b90ab22482",
  60 + "url": "https://api.github.com/repos/twbs/bootstrap/zipball/81df608a40bf0629a1dc08e584849bb1e43e0b7a",
  61 + "reference": "81df608a40bf0629a1dc08e584849bb1e43e0b7a",
62 62 "shasum": ""
63 63 },
64 64 "require": {
65   - "bower-asset/jquery": ">=1.9.1"
  65 + "bower-asset/jquery": ">=1.9.1,<=2"
66 66 },
67 67 "type": "bower-asset-library",
68 68 "extra": {
... ... @@ -135,16 +135,16 @@
135 135 },
136 136 {
137 137 "name": "bower-asset/jquery",
138   - "version": "2.1.4",
  138 + "version": "1.11.3",
139 139 "source": {
140 140 "type": "git",
141 141 "url": "https://github.com/jquery/jquery-dist.git",
142   - "reference": "7751e69b615c6eca6f783a81e292a55725af6b85"
  142 + "reference": "1472290917f17af05e98007136096784f9051fab"
143 143 },
144 144 "dist": {
145 145 "type": "zip",
146   - "url": "https://api.github.com/repos/jquery/jquery-dist/zipball/7751e69b615c6eca6f783a81e292a55725af6b85",
147   - "reference": "7751e69b615c6eca6f783a81e292a55725af6b85",
  146 + "url": "https://api.github.com/repos/jquery/jquery-dist/zipball/1472290917f17af05e98007136096784f9051fab",
  147 + "reference": "1472290917f17af05e98007136096784f9051fab",
148 148 "shasum": ""
149 149 },
150 150 "require-dev": {
... ... @@ -558,16 +558,16 @@
558 558 },
559 559 {
560 560 "name": "kartik-v/yii2-krajee-base",
561   - "version": "1.8.2",
  561 + "version": "v1.7.9",
562 562 "source": {
563 563 "type": "git",
564 564 "url": "https://github.com/kartik-v/yii2-krajee-base.git",
565   - "reference": "0c274e31e4392cbafc5fe158eae81738794e02ce"
  565 + "reference": "6f10fd0a0bfccd729764c65fa65eb4ccf2cbade9"
566 566 },
567 567 "dist": {
568 568 "type": "zip",
569   - "url": "https://api.github.com/repos/kartik-v/yii2-krajee-base/zipball/0c274e31e4392cbafc5fe158eae81738794e02ce",
570   - "reference": "0c274e31e4392cbafc5fe158eae81738794e02ce",
  569 + "url": "https://api.github.com/repos/kartik-v/yii2-krajee-base/zipball/6f10fd0a0bfccd729764c65fa65eb4ccf2cbade9",
  570 + "reference": "6f10fd0a0bfccd729764c65fa65eb4ccf2cbade9",
571 571 "shasum": ""
572 572 },
573 573 "require": {
... ... @@ -600,7 +600,7 @@
600 600 "widget",
601 601 "yii2"
602 602 ],
603   - "time": "2016-01-10 12:26:29"
  603 + "time": "2015-11-25 07:03:35"
604 604 },
605 605 {
606 606 "name": "kartik-v/yii2-widget-select2",
... ... @@ -973,12 +973,12 @@
973 973 "source": {
974 974 "type": "git",
975 975 "url": "https://github.com/yiisoft/yii2-framework.git",
976   - "reference": "b2e6f32de516b43238db0ed36b1c16bf9f22d2db"
  976 + "reference": "e4359f68b70caede1e09ecefb56e9435f7d140af"
977 977 },
978 978 "dist": {
979 979 "type": "zip",
980   - "url": "https://api.github.com/repos/yiisoft/yii2-framework/zipball/b2e6f32de516b43238db0ed36b1c16bf9f22d2db",
981   - "reference": "b2e6f32de516b43238db0ed36b1c16bf9f22d2db",
  980 + "url": "https://api.github.com/repos/yiisoft/yii2-framework/zipball/e4359f68b70caede1e09ecefb56e9435f7d140af",
  981 + "reference": "e4359f68b70caede1e09ecefb56e9435f7d140af",
982 982 "shasum": ""
983 983 },
984 984 "require": {
... ... @@ -1059,7 +1059,7 @@
1059 1059 "framework",
1060 1060 "yii2"
1061 1061 ],
1062   - "time": "2016-01-21 07:55:52"
  1062 + "time": "2016-01-23 08:43:29"
1063 1063 },
1064 1064 {
1065 1065 "name": "yiisoft/yii2-bootstrap",
... ... @@ -1067,12 +1067,12 @@
1067 1067 "source": {
1068 1068 "type": "git",
1069 1069 "url": "https://github.com/yiisoft/yii2-bootstrap.git",
1070   - "reference": "7de7d5d63d655c0c69764f80f2dfc549e9b1d9f0"
  1070 + "reference": "ef941bc83ea63326e44769b922476dc1035ea551"
1071 1071 },
1072 1072 "dist": {
1073 1073 "type": "zip",
1074   - "url": "https://api.github.com/repos/yiisoft/yii2-bootstrap/zipball/7de7d5d63d655c0c69764f80f2dfc549e9b1d9f0",
1075   - "reference": "7de7d5d63d655c0c69764f80f2dfc549e9b1d9f0",
  1074 + "url": "https://api.github.com/repos/yiisoft/yii2-bootstrap/zipball/ef941bc83ea63326e44769b922476dc1035ea551",
  1075 + "reference": "ef941bc83ea63326e44769b922476dc1035ea551",
1076 1076 "shasum": ""
1077 1077 },
1078 1078 "require": {
... ... @@ -1109,7 +1109,7 @@
1109 1109 "bootstrap",
1110 1110 "yii2"
1111 1111 ],
1112   - "time": "2015-12-19 19:45:57"
  1112 + "time": "2016-01-24 17:03:09"
1113 1113 },
1114 1114 {
1115 1115 "name": "yiisoft/yii2-composer",
... ... @@ -1164,12 +1164,12 @@
1164 1164 "source": {
1165 1165 "type": "git",
1166 1166 "url": "https://github.com/yiisoft/yii2-jui.git",
1167   - "reference": "1425ab29929dd195f468d3c4eb340ab509f28b83"
  1167 + "reference": "7ab7ff56bd54500212523e38f5fe3b9210325041"
1168 1168 },
1169 1169 "dist": {
1170 1170 "type": "zip",
1171   - "url": "https://api.github.com/repos/yiisoft/yii2-jui/zipball/1425ab29929dd195f468d3c4eb340ab509f28b83",
1172   - "reference": "1425ab29929dd195f468d3c4eb340ab509f28b83",
  1171 + "url": "https://api.github.com/repos/yiisoft/yii2-jui/zipball/7ab7ff56bd54500212523e38f5fe3b9210325041",
  1172 + "reference": "7ab7ff56bd54500212523e38f5fe3b9210325041",
1173 1173 "shasum": ""
1174 1174 },
1175 1175 "require": {
... ... @@ -1206,7 +1206,7 @@
1206 1206 "jQuery UI",
1207 1207 "yii2"
1208 1208 ],
1209   - "time": "2015-12-24 06:23:53"
  1209 + "time": "2015-12-07 11:33:55"
1210 1210 },
1211 1211 {
1212 1212 "name": "yiisoft/yii2-swiftmailer",
... ...
console/config/.gitignore 100644 → 100755
console/config/bootstrap.php 100644 → 100755
console/config/main.php 100644 → 100755
... ... @@ -12,6 +12,10 @@ return [
12 12 'bootstrap' => ['log'],
13 13 'controllerNamespace' => 'console\controllers',
14 14 'components' => [
  15 + 'urlManager' => [
  16 + 'enablePrettyUrl' => false,
  17 + 'showScriptName' => false
  18 + ],
15 19 'log' => [
16 20 'targets' => [
17 21 [
... ...
console/config/params.php 100644 → 100755
console/controllers/.gitkeep 100644 → 100755
console/migrations/m130524_201442_init.php 100644 → 100755
console/models/.gitkeep 100644 → 100755
console/runtime/.gitignore 100644 → 100755
db-migration/andryeyev/all.backup 100644 → 100755
No preview for this file type
db-migration/andryeyev/menu.backup 100644 → 100755
No preview for this file type
db-migration/andryeyev/termin.backup 100644 → 100755
No preview for this file type
db-migration/artbox/artbox_db.backup 100644 → 100755
No preview for this file type
db-migration/dmitryi/all.backup 100644 → 100755
No preview for this file type
db-migration/dmitryi/artbox_db.backup 100644 → 100755
No preview for this file type
db-migration/dmitryi/auth.backup 100644 → 100755
No preview for this file type
db-migration/dmitryi/social.backup 100644 → 100755
No preview for this file type
db-migration/dmitryi/user.backup 100644 → 100755
No preview for this file type
db-migration/pubic.backup 100644 → 100755
No preview for this file type
db-migration/pubic.sql 100644 → 100755
db-migration/yarik/admin_menu.backup 100644 → 100755
No preview for this file type
db-migration/yarik/all.backup 100644 → 100755
No preview for this file type
db-migration/yarik/article.backup 100644 → 100755
No preview for this file type
db-migration/yarik/language.backup 100644 → 100755
No preview for this file type
db-migration/yarik/media.backup 100644 → 100755
No preview for this file type
db-migration/yarik/option.backup 100644 → 100755
No preview for this file type
environments/dev/backend/config/main-local.php 100644 → 100755
environments/dev/backend/config/params-local.php 100644 → 100755
environments/dev/backend/web/index-test.php 100644 → 100755
environments/dev/backend/web/index.php 100644 → 100755
environments/dev/common/config/main-local.php 100644 → 100755
environments/dev/common/config/params-local.php 100644 → 100755
environments/dev/console/config/main-local.php 100644 → 100755
environments/dev/console/config/params-local.php 100644 → 100755
environments/dev/frontend/config/main-local.php 100644 → 100755
environments/dev/frontend/config/params-local.php 100644 → 100755
environments/dev/frontend/web/index-test.php 100644 → 100755
environments/dev/frontend/web/index.php 100644 → 100755
environments/dev/yii 100644 → 100755
environments/index.php 100644 → 100755
environments/prod/backend/config/main-local.php 100644 → 100755
environments/prod/backend/config/params-local.php 100644 → 100755
environments/prod/backend/web/index.php 100644 → 100755
environments/prod/common/config/main-local.php 100644 → 100755
environments/prod/common/config/params-local.php 100644 → 100755
environments/prod/console/config/main-local.php 100644 → 100755
environments/prod/console/config/params-local.php 100644 → 100755
environments/prod/frontend/config/main-local.php 100644 → 100755
environments/prod/frontend/config/params-local.php 100644 → 100755
environments/prod/frontend/web/index.php 100644 → 100755
environments/prod/yii 100644 → 100755
frontend/assets/AppAsset.php 100644 → 100755
frontend/config/.gitignore 100644 → 100755
frontend/config/bootstrap.php 100644 → 100755
frontend/config/main.php 100644 → 100755
... ... @@ -22,6 +22,9 @@ return [
22 22 //'PageController'=>[
23 23 // 'class' => 'frontend\controllers\PageController'
24 24 //],
  25 + 'request' => [
  26 + 'class' => 'common\components\LangRequest'
  27 + ],
25 28 'user' => [
26 29 'identityClass' => 'common\models\User',
27 30 'enableAutoLogin' => true,
... ...
frontend/config/params.php 100644 → 100755
frontend/controllers/CatalogController.php 100644 → 100755
frontend/controllers/OptionController.php 100644 → 100755
frontend/controllers/OptionValuesController.php 100644 → 100755
frontend/controllers/OptionsController.php 100644 → 100755
frontend/controllers/SiteController.php 100644 → 100755
... ... @@ -212,7 +212,7 @@ class SiteController extends Controller
212 212 Yii::$app->user->logout();
213 213 $identity = Yii::$app->getUser()->getIdentity();
214 214 var_dump($identity[profile]);
215   - die();
  215 +
216 216  
217 217 $model = new ContactForm();
218 218 if ($model->load(Yii::$app->request->post()) && $model->validate()) {
... ...
frontend/controllers/TranslateLangController.php 100644 → 100755
frontend/models/ContactForm.php 100644 → 100755
frontend/models/Front.php 100644 → 100755
frontend/models/Language.php 100644 → 100755
frontend/models/LanguageLang.php 100644 → 100755
frontend/models/Option.php 100644 → 100755
frontend/models/OptionLang.php 100644 → 100755
frontend/models/OptionLangSearch.php 100644 → 100755
frontend/models/OptionSearch.php 100644 → 100755
frontend/models/OptionValues.php 100644 → 100755
frontend/models/OptionValuesSearch.php 100644 → 100755
frontend/models/Options.php 100644 → 100755
frontend/models/OptionsSearch.php 100644 → 100755
frontend/models/PasswordResetRequestForm.php 100644 → 100755
frontend/models/ResetPasswordForm.php 100644 → 100755
frontend/models/SignupForm.php 100644 → 100755
frontend/runtime/.gitignore 100644 → 100755
frontend/views/catalog/index.php 100644 → 100755
frontend/views/layouts/main.php 100644 → 100755
... ... @@ -50,7 +50,7 @@ AppAsset::register($this);
50 50 <div class="header-cabinet-wr">
51 51 <div class="header-cabinet-foto"><img src="images/ded-ico.png" alt=""/></div>
52 52 <div class="header-cabinet-profile">Профиль</div>
53   - <a href="#">Личный кабинет</a>
  53 + <a href="/site/login">Личный кабинет</a>
54 54 </div>
55 55 </div>
56 56 </div>
... ...
frontend/views/option-values/_form.php 100644 → 100755
frontend/views/option-values/_search.php 100644 → 100755
frontend/views/option-values/create.php 100644 → 100755
frontend/views/option-values/index.php 100644 → 100755
frontend/views/option-values/update.php 100644 → 100755
frontend/views/option-values/view.php 100644 → 100755
frontend/views/option/_form.php 100644 → 100755
frontend/views/option/_form_edit.php 100644 → 100755
frontend/views/option/_search.php 100644 → 100755
frontend/views/option/create.php 100644 → 100755
frontend/views/option/index.php 100644 → 100755
frontend/views/option/update.php 100644 → 100755
frontend/views/option/view.php 100644 → 100755
frontend/views/options/_form.php 100644 → 100755
frontend/views/options/_search.php 100644 → 100755
frontend/views/options/create.php 100644 → 100755
frontend/views/options/index.php 100644 → 100755
frontend/views/options/update.php 100644 → 100755
frontend/views/options/view.php 100644 → 100755
frontend/views/site/about.php 100644 → 100755
frontend/views/site/contact.php 100644 → 100755
frontend/views/site/error.php 100644 → 100755
frontend/views/site/feedback.php 100644 → 100755
frontend/views/site/forms-modal.php 100644 → 100755
frontend/views/site/index.php 100644 → 100755
frontend/views/site/login.php 100644 → 100755
frontend/views/site/options.php 100644 → 100755
frontend/views/site/requestPasswordResetToken.php 100644 → 100755
frontend/views/site/resetPassword.php 100644 → 100755
frontend/views/site/signup.php 100644 → 100755
frontend/web/.gitignore 100644 → 100755
frontend/web/assets/.gitignore 100644 → 100755
frontend/web/css/style.css 100644 → 100755
frontend/web/favicon.ico 100644 → 100755
No preview for this file type
frontend/web/images/add_catalog.png 100644 → 100755

895 Bytes | W: | H:

895 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/add_favorite.png 100644 → 100755

2.42 KB | W: | H:

2.42 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/ajax-loader.gif 100644 → 100755

723 Bytes | W: | H:

723 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/arrow-main-menu.png 100644 → 100755

544 Bytes | W: | H:

544 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/arrow-menu-two-hov.png 100644 → 100755

572 Bytes | W: | H:

572 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/arrow-menu-two.png 100644 → 100755

208 Bytes | W: | H:

208 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/arrow-scroll-up.png 100644 → 100755

23.2 KB | W: | H:

23.2 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/arrow-select.png 100644 → 100755

498 Bytes | W: | H:

498 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/artweb.png 100644 → 100755

953 Bytes | W: | H:

953 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/blog/blog-post-img.jpg 100644 → 100755

18.9 KB | W: | H:

18.9 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/blog/box-16.jpg 100644 → 100755

65.4 KB | W: | H:

65.4 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/blog/ico-buttons-1.png 100644 → 100755

772 Bytes | W: | H:

772 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/blog/ico-buttons-2.png 100644 → 100755

857 Bytes | W: | H:

857 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/blog/ico-buttons-3.png 100644 → 100755

763 Bytes | W: | H:

763 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/blog/ico-post.png 100644 → 100755

1.19 KB | W: | H:

1.19 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/blog/ico-see-all-dawn.png 100644 → 100755

498 Bytes | W: | H:

498 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/button_video_01.png 100644 → 100755

485 Bytes | W: | H:

485 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/button_video_02.png 100644 → 100755

490 Bytes | W: | H:

490 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/cabinet-message/foto-ico-1.jpg 100644 → 100755

19.2 KB | W: | H:

19.2 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/cabinet-message/foto-ico-2.jpg 100644 → 100755

24.5 KB | W: | H:

24.5 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/cabinet-message/ico-1.png 100644 → 100755

1.1 KB | W: | H:

1.1 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/cabinet-message/ico-3.png 100644 → 100755

891 Bytes | W: | H:

891 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/cabinet/ico-1.png 100644 → 100755

607 Bytes | W: | H:

607 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/cabinet/ico-2.png 100644 → 100755

603 Bytes | W: | H:

603 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/cabinet/ico-3.png 100644 → 100755

605 Bytes | W: | H:

605 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/cabinet/ico-4.png 100644 → 100755

588 Bytes | W: | H:

588 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/cabinet/ico-5.png 100644 → 100755

609 Bytes | W: | H:

609 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/cabinet/ico-6.png 100644 → 100755

584 Bytes | W: | H:

584 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/check-active.png 100644 → 100755

633 Bytes | W: | H:

633 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/check.png 100644 → 100755

497 Bytes | W: | H:

497 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/command/bg-command.png 100644 → 100755

2.85 KB | W: | H:

2.85 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/command/ded.jpg 100644 → 100755

11.8 KB | W: | H:

11.8 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/ded-foto.jpg 100644 → 100755

9.86 KB | W: | H:

9.86 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/ded-ico.png 100644 → 100755

5.99 KB | W: | H:

5.99 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/delet-file.png 100644 → 100755

2.97 KB | W: | H:

2.97 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/gallery-left.png 100644 → 100755

792 Bytes | W: | H:

792 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/gallery-pic/gal-img-1.jpg 100644 → 100755

15.4 KB | W: | H:

15.4 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/gallery-pic/gal-img-2.jpg 100644 → 100755

17.9 KB | W: | H:

17.9 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/gallery-pic/gal-img-3.jpg 100644 → 100755

10.9 KB | W: | H:

10.9 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/gallery-pic/gal-img-4.jpg 100644 → 100755

14.3 KB | W: | H:

14.3 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/gallery-pic/gallery-big/img-big-1.jpg 100644 → 100755

149 KB | W: | H:

149 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/gallery-pic/gallery-big/img-big-10.jpg 100644 → 100755

15.9 KB | W: | H:

15.9 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/gallery-pic/gallery-big/img-big-2.jpg 100644 → 100755

12.4 KB | W: | H:

12.4 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/gallery-pic/gallery-big/img-big-3.jpg 100644 → 100755

11.3 KB | W: | H:

11.3 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/gallery-pic/gallery-big/img-big-4.jpg 100644 → 100755

10.5 KB | W: | H:

10.5 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/gallery-pic/gallery-big/img-big-5.jpg 100644 → 100755

11.4 KB | W: | H:

11.4 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/gallery-pic/gallery-big/img-big-6.jpg 100644 → 100755

13.1 KB | W: | H:

13.1 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/gallery-pic/gallery-big/img-big-7.jpg 100644 → 100755

11.9 KB | W: | H:

11.9 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/gallery-pic/gallery-big/img-big-8.jpg 100644 → 100755

13.5 KB | W: | H:

13.5 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/gallery-pic/gallery-big/img-big-9.jpg 100644 → 100755

12 KB | W: | H:

12 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/gallery-pic/gallery-preview/img-1.jpg 100644 → 100755

9.13 KB | W: | H:

9.13 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/gallery-pic/gallery-preview/img-10.jpg 100644 → 100755

2.89 KB | W: | H:

2.89 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/gallery-pic/gallery-preview/img-2.jpg 100644 → 100755

7.99 KB | W: | H:

7.99 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/gallery-pic/gallery-preview/img-3.jpg 100644 → 100755

2.69 KB | W: | H:

2.69 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/gallery-pic/gallery-preview/img-4.jpg 100644 → 100755

2.39 KB | W: | H:

2.39 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/gallery-pic/gallery-preview/img-5.jpg 100644 → 100755

2.42 KB | W: | H:

2.42 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/gallery-pic/gallery-preview/img-6.jpg 100644 → 100755

2.54 KB | W: | H:

2.54 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/gallery-pic/gallery-preview/img-7.jpg 100644 → 100755

2.39 KB | W: | H:

2.39 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/gallery-pic/gallery-preview/img-8.jpg 100644 → 100755

2.91 KB | W: | H:

2.91 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/gallery-pic/gallery-preview/img-9.jpg 100644 → 100755

2.65 KB | W: | H:

2.65 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/gallery-right.png 100644 → 100755

798 Bytes | W: | H:

798 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/ico-city.png 100644 → 100755

617 Bytes | W: | H:

617 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/ico-clock.png 100644 → 100755

745 Bytes | W: | H:

745 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/ico-comm.png 100644 → 100755

659 Bytes | W: | H:

659 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/ico-contact.png 100644 → 100755

886 Bytes | W: | H:

886 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/ico-fb.png 100644 → 100755

927 Bytes | W: | H:

927 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/ico-fed-1.png 100644 → 100755

1.27 KB | W: | H:

1.27 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/ico-fed-2.png 100644 → 100755

1.54 KB | W: | H:

1.54 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/ico-fed-3.png 100644 → 100755

1.26 KB | W: | H:

1.26 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/ico-in.png 100644 → 100755

1011 Bytes | W: | H:

1011 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/ico-phone.png 100644 → 100755

684 Bytes | W: | H:

684 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/ico-profile.png 100644 → 100755

998 Bytes | W: | H:

998 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/ico-question.png 100644 → 100755

789 Bytes | W: | H:

789 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/ico-search.png 100644 → 100755

754 Bytes | W: | H:

754 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/ico-see-all-dawn.png 100644 → 100755

498 Bytes | W: | H:

498 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/ico-site.png 100644 → 100755

775 Bytes | W: | H:

775 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/ico-tw.png 100644 → 100755

957 Bytes | W: | H:

957 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/ico-vk.png 100644 → 100755

953 Bytes | W: | H:

953 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/landing-freelance/bg-12.jpg 100644 → 100755

238 KB | W: | H:

238 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/landing-freelance/landing-fr-ico-1.png 100644 → 100755

121 KB | W: | H:

121 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/landing-freelance/landing-free-ico-1.png 100644 → 100755

6.96 KB | W: | H:

6.96 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/landing-order-project/bg-23.jpg 100644 → 100755

333 KB | W: | H:

333 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/landing-order-project/bg-30.jpg 100644 → 100755

25.3 KB | W: | H:

25.3 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/landing-order-project/landing-or-1.png 100644 → 100755

123 KB | W: | H:

123 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/landing-work/bg-13.jpg 100644 → 100755

87.7 KB | W: | H:

87.7 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/landing/arrow-best-1.png 100644 → 100755

813 Bytes | W: | H:

813 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/landing/arrow-best-2.png 100644 → 100755

812 Bytes | W: | H:

812 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/landing/bg-10.jpg 100644 → 100755

24 KB | W: | H:

24 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/landing/bg-11.jpg 100644 → 100755

42.3 KB | W: | H:

42.3 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/landing/bg-5.jpg 100644 → 100755

143 KB | W: | H:

143 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/landing/bg-8.jpg 100644 → 100755

42.1 KB | W: | H:

42.1 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/landing/ico-circle-1.png 100644 → 100755

7.19 KB | W: | H:

7.19 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/landing/land-best-img-1.jpg 100644 → 100755

5.38 KB | W: | H:

5.38 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/landing/land-best-img-2.jpg 100644 → 100755

5.31 KB | W: | H:

5.31 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/landing/land-best-img-3.jpg 100644 → 100755

5.9 KB | W: | H:

5.9 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/landing/land-best-img-4.jpg 100644 → 100755

4.56 KB | W: | H:

4.56 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/landing/land-best-img-5.jpg 100644 → 100755

4.51 KB | W: | H:

4.51 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/landing/landing-ico-1.png 100644 → 100755

125 KB | W: | H:

125 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/landing/landing-ico-2.png 100644 → 100755

3.56 KB | W: | H:

3.56 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/landing/slider-img.png 100644 → 100755

29.2 KB | W: | H:

29.2 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/logo-company.jpg 100644 → 100755

14.5 KB | W: | H:

14.5 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/logo.png 100644 → 100755

3.25 KB | W: | H:

3.25 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/marker_slider.jpg 100644 → 100755

5.22 KB | W: | H:

5.22 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/clasters.png 100644 → 100755

1.36 KB | W: | H:

1.36 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/clasters1.png 100644 → 100755

1.36 KB | W: | H:

1.36 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/clasters2.png 100644 → 100755

1.36 KB | W: | H:

1.36 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/clasters3.png 100644 → 100755

1.36 KB | W: | H:

1.36 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/clasters4.png 100644 → 100755

1.36 KB | W: | H:

1.36 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/clasters5.png 100644 → 100755

1.36 KB | W: | H:

1.36 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/marker-empl-1.png 100644 → 100755

3.38 KB | W: | H:

3.38 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/marker-empl-2.png 100644 → 100755

3.38 KB | W: | H:

3.38 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/marker-empl-3.png 100644 → 100755

3.37 KB | W: | H:

3.37 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/marker-empl-4.png 100644 → 100755

3.38 KB | W: | H:

3.38 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/marker-empl-5.png 100644 → 100755

3.37 KB | W: | H:

3.37 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/marker-empl-6.png 100644 → 100755

3.36 KB | W: | H:

3.36 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/marker-empl-7.png 100644 → 100755

3.37 KB | W: | H:

3.37 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/marker-empl-8.png 100644 → 100755

3.38 KB | W: | H:

3.38 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/marker-empl-9.png 100644 → 100755

3.36 KB | W: | H:

3.36 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/marker-min-1.png 100644 → 100755

821 Bytes | W: | H:

821 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/marker-min-10.png 100644 → 100755

736 Bytes | W: | H:

736 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/marker-min-11.png 100644 → 100755

755 Bytes | W: | H:

755 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/marker-min-2.png 100644 → 100755

830 Bytes | W: | H:

830 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/marker-min-3.png 100644 → 100755

781 Bytes | W: | H:

781 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/marker-min-4.png 100644 → 100755

823 Bytes | W: | H:

823 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/marker-min-5.png 100644 → 100755

819 Bytes | W: | H:

819 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/marker-min-6.png 100644 → 100755

820 Bytes | W: | H:

820 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/marker-min-7.png 100644 → 100755

821 Bytes | W: | H:

821 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/marker-min-8.png 100644 → 100755

820 Bytes | W: | H:

820 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/marker-min-9.png 100644 → 100755

820 Bytes | W: | H:

820 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/marker-we-1.png 100644 → 100755

3.25 KB | W: | H:

3.25 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/marker-we-2.png 100644 → 100755

3.25 KB | W: | H:

3.25 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/marker-we-3.png 100644 → 100755

3.24 KB | W: | H:

3.24 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/marker-we-4.png 100644 → 100755

3.25 KB | W: | H:

3.25 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/marker-we-5.png 100644 → 100755

3.24 KB | W: | H:

3.24 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/marker-we-6.png 100644 → 100755

3.25 KB | W: | H:

3.25 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/marker-we-7.png 100644 → 100755

3.24 KB | W: | H:

3.24 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/marker-we-8.png 100644 → 100755

3.25 KB | W: | H:

3.25 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/markers/marker-we-9.png 100644 → 100755

3.26 KB | W: | H:

3.26 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/menu-pic-1-2.jpg 100644 → 100755

18.6 KB | W: | H:

18.6 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/menu-pic-1.jpg 100644 → 100755

19 KB | W: | H:

19 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/menu_icons.png 100644 → 100755

1.36 KB | W: | H:

1.36 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/mes_bord_left.png 100644 → 100755

23.3 KB | W: | H:

23.3 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/mes_bord_right.png 100644 → 100755

23.3 KB | W: | H:

23.3 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/modal-close.png 100644 → 100755

661 Bytes | W: | H:

661 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/performar_vacancy/arrow-list-prev.png 100644 → 100755

193 Bytes | W: | H:

193 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/performar_vacancy/arrow-post.png 100644 → 100755

525 Bytes | W: | H:

525 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/performar_vacancy/bg-14.jpg 100644 → 100755

124 KB | W: | H:

124 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/performar_vacancy/ico-sidebar.jpg 100644 → 100755

7.59 KB | W: | H:

7.59 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/portfolio-project/flag-img-1.jpg 100644 → 100755

1.58 KB | W: | H:

1.58 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/portfolio-project/flag-img-2.jpg 100644 → 100755

1.63 KB | W: | H:

1.63 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/portfolio-project/flag-img-3.jpg 100644 → 100755

1.69 KB | W: | H:

1.69 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/portfolio-project/ico-1.png 100644 → 100755

707 Bytes | W: | H:

707 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/portfolio-project/ico-2.png 100644 → 100755

498 Bytes | W: | H:

498 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/portfolio-project/ico-3.png 100644 → 100755

667 Bytes | W: | H:

667 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/portfolio-project/portfolio-img-1.jpg 100644 → 100755

52.3 KB | W: | H:

52.3 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/portfolio-project/portfolio-img-2.jpg 100644 → 100755

31.9 KB | W: | H:

31.9 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/post-pic1.jpg 100644 → 100755

10.8 KB | W: | H:

10.8 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/post-pic2.jpg 100644 → 100755

14 KB | W: | H:

14 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/radio-active.png 100644 → 100755

766 Bytes | W: | H:

766 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/radio.png 100644 → 100755

678 Bytes | W: | H:

678 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/scroll_down.png 100644 → 100755

23.4 KB | W: | H:

23.4 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/scroll_down_grey.png 100644 → 100755

23.4 KB | W: | H:

23.4 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/scroll_up.png 100644 → 100755

23.4 KB | W: | H:

23.4 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/scroll_up_grey.png 100644 → 100755

23.4 KB | W: | H:

23.4 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/search-warker/foto-big--big1.jpg 100644 → 100755

17.3 KB | W: | H:

17.3 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/search-warker/foto-big-1.jpg 100644 → 100755

41.3 KB | W: | H:

41.3 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/search-warker/foto-big-2.jpg 100644 → 100755

7.74 KB | W: | H:

7.74 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/search-warker/foto-big-3.jpg 100644 → 100755

6.99 KB | W: | H:

6.99 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/search-warker/foto-big-4.jpg 100644 → 100755

5.6 KB | W: | H:

5.6 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/search-warker/foto-small-2.jpg 100644 → 100755

4.48 KB | W: | H:

4.48 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/search-warker/foto-small-3.jpg 100644 → 100755

4.12 KB | W: | H:

4.12 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/search-warker/foto-small-4.jpg 100644 → 100755

4.86 KB | W: | H:

4.86 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/search-warker/ico-1.png 100644 → 100755

814 Bytes | W: | H:

814 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/search-warker/ico-2.png 100644 → 100755

755 Bytes | W: | H:

755 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/sect-bg-1.jpg 100644 → 100755

134 KB | W: | H:

134 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/sect-bg-4.jpg 100644 → 100755

27.5 KB | W: | H:

27.5 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/shadow-map.png 100644 → 100755

478 Bytes | W: | H:

478 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/sidebar-ico/arrow-ico.png 100644 → 100755

501 Bytes | W: | H:

501 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/sidebar-ico/ico-1.png 100644 → 100755

707 Bytes | W: | H:

707 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/sidebar-ico/ico-10.png 100644 → 100755

718 Bytes | W: | H:

718 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/sidebar-ico/ico-11.png 100644 → 100755

704 Bytes | W: | H:

704 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/sidebar-ico/ico-12.png 100644 → 100755

747 Bytes | W: | H:

747 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/sidebar-ico/ico-13.png 100644 → 100755

775 Bytes | W: | H:

775 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/sidebar-ico/ico-14.png 100644 → 100755

823 Bytes | W: | H:

823 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/sidebar-ico/ico-15.png 100644 → 100755

695 Bytes | W: | H:

695 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/sidebar-ico/ico-16.png 100644 → 100755

760 Bytes | W: | H:

760 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/sidebar-ico/ico-2.png 100644 → 100755

754 Bytes | W: | H:

754 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/sidebar-ico/ico-3.png 100644 → 100755

701 Bytes | W: | H:

701 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/sidebar-ico/ico-4.png 100644 → 100755

787 Bytes | W: | H:

787 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/sidebar-ico/ico-5.png 100644 → 100755

695 Bytes | W: | H:

695 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/sidebar-ico/ico-6.png 100644 → 100755

684 Bytes | W: | H:

684 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/sidebar-ico/ico-7.png 100644 → 100755

775 Bytes | W: | H:

775 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/sidebar-ico/ico-8.png 100644 → 100755

657 Bytes | W: | H:

657 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/sidebar-ico/ico-9.png 100644 → 100755

765 Bytes | W: | H:

765 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/skrpk.png 100644 → 100755

23.6 KB | W: | H:

23.6 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/skrpk_min.png 100644 → 100755

2.96 KB | W: | H:

2.96 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/skrpk_sm.png 100644 → 100755

23.5 KB | W: | H:

23.5 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/slider-arrow-next.png 100644 → 100755

659 Bytes | W: | H:

659 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/slider-arrow-prev.png 100644 → 100755

670 Bytes | W: | H:

670 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/soc-ico-1.png 100644 → 100755

3.39 KB | W: | H:

3.39 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/soc-ico-2.png 100644 → 100755

3.03 KB | W: | H:

3.03 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/soc-ico-3.png 100644 → 100755

2.76 KB | W: | H:

2.76 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/soc-ico-4.png 100644 → 100755

3.02 KB | W: | H:

3.02 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/soc-ico-5.png 100644 → 100755

3.46 KB | W: | H:

3.46 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/stars.png 100644 → 100755

843 Bytes | W: | H:

843 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/tender/ico-1.png 100644 → 100755

1.11 KB | W: | H:

1.11 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/tender/ico-2.png 100644 → 100755

658 Bytes | W: | H:

658 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/images/tender/ico-3.png 100644 → 100755

584 Bytes | W: | H:

584 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
frontend/web/js/autoresize.jquery.js 100644 → 100755
frontend/web/js/forms.js 100644 → 100755
frontend/web/js/jmousewhell.js 100644 → 100755
frontend/web/js/jquery.MultiFile.js 100644 → 100755
frontend/web/js/jquery.rating.js 100644 → 100755
frontend/web/js/jquery.scrollbox.min.js 100644 → 100755
frontend/web/js/jscroll.js 100644 → 100755
frontend/web/js/markerclusterer.js 100644 → 100755
frontend/web/js/myGallery_min.js 100644 → 100755
frontend/web/js/no-comprss/forms-nocompress.js 100644 → 100755
frontend/web/js/no-comprss/jquery.rating-nocompress.js 100644 → 100755
frontend/web/js/no-comprss/myGallery.js 100644 → 100755
frontend/web/js/no-comprss/script-nocompress.js 100644 → 100755
frontend/web/js/script.js 100644 → 100755
frontend/web/js/slider.js 100644 → 100755
frontend/web/robots.txt 100644 → 100755
init 100644 → 100755
init.bat 100644 → 100755
requirements.php 100644 → 100755
test.html 100644 → 100755
tests/README.md 100644 → 100755
tests/codeception.yml 100644 → 100755
tests/codeception/_output/.gitignore 100644 → 100755
tests/codeception/backend/.gitignore 100644 → 100755
tests/codeception/backend/_bootstrap.php 100644 → 100755
tests/codeception/backend/_output/.gitignore 100644 → 100755
tests/codeception/backend/acceptance.suite.yml 100644 → 100755
tests/codeception/backend/acceptance/LoginCept.php 100644 → 100755
tests/codeception/backend/acceptance/_bootstrap.php 100644 → 100755
tests/codeception/backend/codeception.yml 100644 → 100755
tests/codeception/backend/functional.suite.yml 100644 → 100755
tests/codeception/backend/functional/LoginCept.php 100644 → 100755
tests/codeception/backend/functional/_bootstrap.php 100644 → 100755
tests/codeception/backend/unit.suite.yml 100644 → 100755
tests/codeception/backend/unit/DbTestCase.php 100644 → 100755
tests/codeception/backend/unit/TestCase.php 100644 → 100755
tests/codeception/backend/unit/_bootstrap.php 100644 → 100755
tests/codeception/backend/unit/fixtures/data/.gitkeep 100644 → 100755
tests/codeception/bin/_bootstrap.php 100644 → 100755
tests/codeception/bin/yii 100644 → 100755
tests/codeception/bin/yii.bat 100644 → 100755
tests/codeception/common/.gitignore 100644 → 100755
tests/codeception/common/_bootstrap.php 100644 → 100755
tests/codeception/common/_output/.gitignore 100644 → 100755
tests/codeception/common/_pages/LoginPage.php 100644 → 100755
tests/codeception/common/_support/FixtureHelper.php 100644 → 100755
tests/codeception/common/codeception.yml 100644 → 100755
tests/codeception/common/fixtures/UserFixture.php 100644 → 100755
tests/codeception/common/fixtures/data/init_login.php 100644 → 100755
tests/codeception/common/templates/fixtures/user.php 100644 → 100755
tests/codeception/common/unit.suite.yml 100644 → 100755
tests/codeception/common/unit/DbTestCase.php 100644 → 100755
tests/codeception/common/unit/TestCase.php 100644 → 100755
tests/codeception/common/unit/_bootstrap.php 100644 → 100755
tests/codeception/common/unit/fixtures/data/models/user.php 100644 → 100755
tests/codeception/common/unit/models/LoginFormTest.php 100644 → 100755
tests/codeception/config/acceptance.php 100644 → 100755
tests/codeception/config/backend/acceptance.php 100644 → 100755
tests/codeception/config/backend/config.php 100644 → 100755
tests/codeception/config/backend/functional.php 100644 → 100755
tests/codeception/config/backend/unit.php 100644 → 100755
tests/codeception/config/common/unit.php 100644 → 100755
tests/codeception/config/config.php 100644 → 100755
tests/codeception/config/console/unit.php 100644 → 100755
tests/codeception/config/frontend/acceptance.php 100644 → 100755
tests/codeception/config/frontend/config.php 100644 → 100755
tests/codeception/config/frontend/functional.php 100644 → 100755
tests/codeception/config/frontend/unit.php 100644 → 100755
tests/codeception/config/functional.php 100644 → 100755
tests/codeception/config/unit.php 100644 → 100755
tests/codeception/console/.gitignore 100644 → 100755
tests/codeception/console/_bootstrap.php 100644 → 100755
tests/codeception/console/_output/.gitignore 100644 → 100755
tests/codeception/console/codeception.yml 100644 → 100755
tests/codeception/console/unit.suite.yml 100644 → 100755
tests/codeception/console/unit/DbTestCase.php 100644 → 100755
tests/codeception/console/unit/TestCase.php 100644 → 100755
tests/codeception/console/unit/_bootstrap.php 100644 → 100755
tests/codeception/console/unit/fixtures/data/.gitkeep 100644 → 100755
tests/codeception/frontend/.gitignore 100644 → 100755
tests/codeception/frontend/_bootstrap.php 100644 → 100755
tests/codeception/frontend/_output/.gitignore 100644 → 100755
tests/codeception/frontend/_pages/AboutPage.php 100644 → 100755
tests/codeception/frontend/_pages/ContactPage.php 100644 → 100755
tests/codeception/frontend/_pages/SignupPage.php 100644 → 100755
tests/codeception/frontend/acceptance.suite.yml 100644 → 100755
tests/codeception/frontend/acceptance/AboutCept.php 100644 → 100755
tests/codeception/frontend/acceptance/ContactCept.php 100644 → 100755
tests/codeception/frontend/acceptance/HomeCept.php 100644 → 100755
tests/codeception/frontend/acceptance/LoginCept.php 100644 → 100755
tests/codeception/frontend/acceptance/SignupCest.php 100644 → 100755
tests/codeception/frontend/acceptance/_bootstrap.php 100644 → 100755
tests/codeception/frontend/codeception.yml 100644 → 100755
tests/codeception/frontend/functional.suite.yml 100644 → 100755
tests/codeception/frontend/functional/AboutCept.php 100644 → 100755
tests/codeception/frontend/functional/ContactCept.php 100644 → 100755
tests/codeception/frontend/functional/HomeCept.php 100644 → 100755
tests/codeception/frontend/functional/LoginCept.php 100644 → 100755
tests/codeception/frontend/functional/SignupCest.php 100644 → 100755
tests/codeception/frontend/functional/_bootstrap.php 100644 → 100755
tests/codeception/frontend/unit.suite.yml 100644 → 100755
tests/codeception/frontend/unit/DbTestCase.php 100644 → 100755
tests/codeception/frontend/unit/TestCase.php 100644 → 100755
tests/codeception/frontend/unit/_bootstrap.php 100644 → 100755
tests/codeception/frontend/unit/fixtures/data/models/user.php 100644 → 100755
tests/codeception/frontend/unit/models/ContactFormTest.php 100644 → 100755
tests/codeception/frontend/unit/models/PasswordResetRequestFormTest.php 100644 → 100755
tests/codeception/frontend/unit/models/ResetPasswordFormTest.php 100644 → 100755
tests/codeception/frontend/unit/models/SignupFormTest.php 100644 → 100755
yii.bat 100644 → 100755