@@ -101,6 +92,10 @@
overflow-y: auto
}
+ .cat-select:focus {
+ outline: none;
+ }
+
.cat-select option {
border-top: 1px solid #f2f2f2;
padding: 15px 0 20px;
@@ -119,7 +114,7 @@
}
#main {
- background-image: {{ img('visiosoft.theme.base::images/bg/main.png').url }} !important;
+ background-image: {{ img('visiosoft.module.advs::images/main.png').url }} !important;
}
.btn-1 {
@@ -130,7 +125,7 @@
margin-right: 5px;
}
- {{ asset_add("scripts.js", "visiosoft.theme.base::js/cats.js") }}
+ {{ asset_add("scripts.js", "visiosoft.module.advs::js/cats.js") }}
{% endblock %}
diff --git a/addons/default/visiosoft/advs-module/src/Adv/AdvModel.php b/addons/default/visiosoft/advs-module/src/Adv/AdvModel.php
index cbcd74a6f..b7ef273b1 100644
--- a/addons/default/visiosoft/advs-module/src/Adv/AdvModel.php
+++ b/addons/default/visiosoft/advs-module/src/Adv/AdvModel.php
@@ -313,7 +313,7 @@ class AdvModel extends AdvsAdvsEntryModel implements AdvInterface
public function AddAdsDefaultCoverImage($ad)
{
if ($ad->cover_photo == null) {
- $ad->cover_photo = $this->dispatch(new MakeImageInstance('visiosoft.theme.base::images/no-image-ads.jpg', 'img'))->url();
+ $ad->cover_photo = $this->dispatch(new MakeImageInstance('visiosoft.module.advs::images/no-image.png', 'img'))->url();
} else {
$ad->cover_photo = url($ad->cover_photo);
}
@@ -324,7 +324,7 @@ class AdvModel extends AdvsAdvsEntryModel implements AdvInterface
{
$adv = $this->find($id);
if ($adv == null or $adv->cover_photo == null) {
- $cover_photo = $this->dispatch(new MakeImageInstance('visiosoft.theme.base::images/no-image-ads.jpg', 'img'))->url();
+ $cover_photo = $this->dispatch(new MakeImageInstance('visiosoft.module.advs::images/no-image.png', 'img'))->url();
} else {
$cover_photo = url($adv->cover_photo);
}
diff --git a/addons/default/visiosoft/advs-module/src/Adv/AdvResponse.php b/addons/default/visiosoft/advs-module/src/Adv/AdvResponse.php
index a885abdd3..bbbd50d23 100644
--- a/addons/default/visiosoft/advs-module/src/Adv/AdvResponse.php
+++ b/addons/default/visiosoft/advs-module/src/Adv/AdvResponse.php
@@ -21,7 +21,7 @@ class AdvResponse {
if (!$adv->getResponse()) {
$response = $this->response->view(
- 'visiosoft.theme.base::ad-detail/detail',
+ 'visiosoft.module.advs::ad-detail/detail',
[
'adv' => $adv,
]
diff --git a/addons/default/visiosoft/advs-module/src/Http/Controller/Admin/AdvsController.php b/addons/default/visiosoft/advs-module/src/Http/Controller/Admin/AdvsController.php
index 0d539110a..d9c9ca9d4 100644
--- a/addons/default/visiosoft/advs-module/src/Http/Controller/Admin/AdvsController.php
+++ b/addons/default/visiosoft/advs-module/src/Http/Controller/Admin/AdvsController.php
@@ -40,8 +40,8 @@ class AdvsController extends AdminController
*/
public function index(AdvTableBuilder $table, \Anomaly\UsersModule\User\UserModel $userModel, CityModel $cityModel, CatsCategoryEntryModel $categoryModel)
{
- $table->addAsset("theme.css", "visiosoft.theme.base::css/custom.css");
- $table->addAsset('script.js', 'visiosoft.theme.base::js/admin-list.js');
+ $table->addAsset("theme.css", "visiosoft.module.advs::css/custom.css");
+ $table->addAsset('script.js', 'visiosoft.module.advs::js/list.js');
$table->addButtons([
'status' => [
diff --git a/addons/default/visiosoft/advs-module/src/Http/Controller/CategoriesController.php b/addons/default/visiosoft/advs-module/src/Http/Controller/CategoriesController.php
index c5c7d28db..3329bb931 100644
--- a/addons/default/visiosoft/advs-module/src/Http/Controller/CategoriesController.php
+++ b/addons/default/visiosoft/advs-module/src/Http/Controller/CategoriesController.php
@@ -14,6 +14,6 @@ class CategoriesController extends PublicController {
->select('advs_advs.*','u1.username as owner', 't1.name as name')
->get();
- return $this->view->make('visiosoft.theme.base::list/list', compact('advs'));
+ return $this->view->make('visiosoft.module.advs::list/list', compact('advs'));
}
}
diff --git a/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php b/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php
index 8cf4d6ddd..ba76e11fc 100644
--- a/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php
+++ b/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php
@@ -220,11 +220,11 @@ class AdvsController extends PublicController
$viewType = $this->requestHttp->cookie('viewType');
if (isset($viewType) and $viewType == 'table')
- return $this->view->make('visiosoft.theme.base::list/table', $compact);
+ return $this->view->make('visiosoft.module.advs::list/table', $compact);
elseif (isset($viewType) and $viewType == 'map')
- return $this->view->make('visiosoft.theme.base::list/map', $compact);
+ return $this->view->make('visiosoft.module.advs::list/map', $compact);
- return $this->view->make('visiosoft.theme.base::list/list', $compact);
+ return $this->view->make('visiosoft.module.advs::list/list', $compact);
}
public function viewType($type)
@@ -305,7 +305,7 @@ class AdvsController extends PublicController
if ($adv->created_by_id == isset(auth()->user()->id) OR $adv->status == "approved") {
- return $this->view->make('visiosoft.theme.base::ad-detail/detail', compact('adv', 'complaints', 'recommended_advs', 'categories', 'features', 'tags', 'profile', 'comments', 'qrSRC'));
+ return $this->view->make('visiosoft.module.advs::ad-detail/detail', compact('adv', 'complaints', 'recommended_advs', 'categories', 'features', 'tags', 'profile', 'comments', 'qrSRC'));
} else {
return back();
}
@@ -399,7 +399,7 @@ class AdvsController extends PublicController
$custom_fields = app('Visiosoft\CustomfieldsModule\Http\Controller\cfController')->create($categories);
}
//Cloudinary Module
- return $this->view->make('visiosoft.theme.base::new-ad/new-create', compact(
+ return $this->view->make('visiosoft.module.advs::new-ad/new-create', compact(
'request', 'formBuilder', 'cats_d', 'custom_fields'));
}
@@ -715,7 +715,7 @@ class AdvsController extends PublicController
$custom_fields = app('Visiosoft\CustomfieldsModule\Http\Controller\cfController')->edit($adv, $categories, $cats);
}
- return $this->view->make('visiosoft.theme.base::new-ad/new-create', compact('id', 'cats_d', 'request', 'Cloudinary', 'cities', 'adv', 'custom_fields', 'nameField', 'descField'));
+ return $this->view->make('visiosoft.module.advs::new-ad/new-create', compact('id', 'cats_d', 'request', 'Cloudinary', 'cities', 'adv', 'custom_fields', 'nameField', 'descField'));
}
public function destroy($id)
@@ -772,7 +772,7 @@ class AdvsController extends PublicController
}
$main_cats = $this->category_repository->mainCats();
- return $this->view->make('visiosoft.theme.base::new-ad/post-cat', compact('main_cats'));
+ return $this->view->make('visiosoft.module.advs::new-ad/post-cat', compact('main_cats'));
}
@@ -809,7 +809,7 @@ class AdvsController extends PublicController
$main_cats = $this->category_repository->mainCats();
- return $this->view->make('visiosoft.theme.base::new-ad/edit-cat', compact('main_cats', 'id'));
+ return $this->view->make('visiosoft.module.advs::new-ad/edit-cat', compact('main_cats', 'id'));
}
@@ -821,7 +821,7 @@ class AdvsController extends PublicController
$urlPrev = str_replace(url('/'), '', url()->previous());
- return $this->view->make('visiosoft.theme.base::login', compact('urlPrev'));
+ return $this->view->make('theme::login', compact('urlPrev'));
}
public function register()
@@ -831,7 +831,7 @@ class AdvsController extends PublicController
return redirect('/');
}
- return $this->view->make('visiosoft.theme.base::register');
+ return $this->view->make('theme::register');
}
public function passwordForgot()
@@ -840,7 +840,7 @@ class AdvsController extends PublicController
return redirect('/');
}
- return $this->view->make('visiosoft.theme.base::passwords/forgot');
+ return $this->view->make('theme::passwords/forgot');
}
public function passwordReset(Request $request)
@@ -849,14 +849,14 @@ class AdvsController extends PublicController
return redirect('/');
}
$code = $request->email;
- return $this->view->make('visiosoft.theme.base::passwords/reset', compact('code'));
+ return $this->view->make('theme::passwords/reset', compact('code'));
}
public function homePage(CategoryRepositoryInterface $repository)
{
$cats = $repository->mainCats();
- return $this->view->make('visiosoft.theme.base::addons/anomaly/pages-module/page', compact('cats'));
+ return $this->view->make('theme::addons/anomaly/pages-module/page', compact('cats'));
}
public function map(AdvRepositoryInterface $advRepository,
diff --git a/addons/default/visiosoft/advs-module/src/Seed/Blocks/left-home-banner-area.twig b/addons/default/visiosoft/advs-module/src/Seed/Blocks/left-home-banner-area.twig
index 1cea819a0..e8325f104 100644
--- a/addons/default/visiosoft/advs-module/src/Seed/Blocks/left-home-banner-area.twig
+++ b/addons/default/visiosoft/advs-module/src/Seed/Blocks/left-home-banner-area.twig
@@ -1,3 +1,3 @@
-
.url }})
+
\ No newline at end of file
diff --git a/addons/default/visiosoft/advs-module/src/Seed/Blocks/list-item-right-sidebar-en.twig b/addons/default/visiosoft/advs-module/src/Seed/Blocks/list-item-right-sidebar-en.twig
index eabaaeb4d..01e7f4332 100644
--- a/addons/default/visiosoft/advs-module/src/Seed/Blocks/list-item-right-sidebar-en.twig
+++ b/addons/default/visiosoft/advs-module/src/Seed/Blocks/list-item-right-sidebar-en.twig
@@ -3,7 +3,7 @@
-
@@ -15,7 +15,7 @@
-
@@ -28,7 +28,7 @@
-
diff --git a/addons/default/visiosoft/advs-module/src/Seed/Blocks/list-item-right-sidebar-tr.twig b/addons/default/visiosoft/advs-module/src/Seed/Blocks/list-item-right-sidebar-tr.twig
index e8ea4a415..bce963ff7 100644
--- a/addons/default/visiosoft/advs-module/src/Seed/Blocks/list-item-right-sidebar-tr.twig
+++ b/addons/default/visiosoft/advs-module/src/Seed/Blocks/list-item-right-sidebar-tr.twig
@@ -3,7 +3,7 @@
-
@@ -15,7 +15,7 @@
-
@@ -28,7 +28,7 @@
-
@@ -40,7 +40,7 @@
-
Yardıma mı ihtiyacınız var?
diff --git a/addons/default/visiosoft/advs-module/src/Seed/Blocks/middle-home-banner-area.twig b/addons/default/visiosoft/advs-module/src/Seed/Blocks/middle-home-banner-area.twig
index 15d1af80e..3e24115e7 100644
--- a/addons/default/visiosoft/advs-module/src/Seed/Blocks/middle-home-banner-area.twig
+++ b/addons/default/visiosoft/advs-module/src/Seed/Blocks/middle-home-banner-area.twig
@@ -1,3 +1,3 @@
-
.url }})
+
\ No newline at end of file
diff --git a/addons/default/visiosoft/advs-module/src/Seed/Blocks/right-home-banner-area.twig b/addons/default/visiosoft/advs-module/src/Seed/Blocks/right-home-banner-area.twig
index 0d530d900..120413a60 100644
--- a/addons/default/visiosoft/advs-module/src/Seed/Blocks/right-home-banner-area.twig
+++ b/addons/default/visiosoft/advs-module/src/Seed/Blocks/right-home-banner-area.twig
@@ -1,3 +1,3 @@
-
.url }})
+
\ No newline at end of file
diff --git a/addons/default/visiosoft/base-theme/resources/lang/en/fields.php b/addons/default/visiosoft/base-theme/resources/lang/en/fields.php
index f07a8d979..9574ef8a8 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/en/fields.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/en/fields.php
@@ -30,7 +30,4 @@ return [
'content' => [
'name' => 'Content',
],
- 'price' => [
- 'name' => 'Price'
- ],
];
\ No newline at end of file
diff --git a/addons/default/visiosoft/base-theme/resources/lang/en/message.php b/addons/default/visiosoft/base-theme/resources/lang/en/message.php
index 71dc80956..c5c23e41e 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/en/message.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/en/message.php
@@ -1,6 +1,4 @@
'Filter By Search.',
-];
+return [];
diff --git a/addons/default/visiosoft/base-theme/resources/lang/tr/fields.php b/addons/default/visiosoft/base-theme/resources/lang/tr/fields.php
index 6c9433c45..08b08ad87 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/tr/fields.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/tr/fields.php
@@ -31,7 +31,4 @@ return [
'content' => [
'name' => 'Açıklama',
],
- 'price' => [
- 'name' => 'Fiyat'
- ],
];
\ No newline at end of file
diff --git a/addons/default/visiosoft/base-theme/resources/lang/tr/message.php b/addons/default/visiosoft/base-theme/resources/lang/tr/message.php
index 01617eb80..0b67a5fe4 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/tr/message.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/tr/message.php
@@ -1,5 +1,3 @@
'Aramanızı Daraltın.',
-];
+return [];
diff --git a/addons/default/visiosoft/base-theme/resources/views/new-ad/partials/breadcrumb.twig b/addons/default/visiosoft/base-theme/resources/views/new-ad/partials/breadcrumb.twig
deleted file mode 100644
index 7c458e2a9..000000000
--- a/addons/default/visiosoft/base-theme/resources/views/new-ad/partials/breadcrumb.twig
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/addons/default/visiosoft/media-field_type/resources/lang/tr/button.php b/addons/default/visiosoft/media-field_type/resources/lang/tr/button.php
index 438fea527..e8fb1e78d 100644
--- a/addons/default/visiosoft/media-field_type/resources/lang/tr/button.php
+++ b/addons/default/visiosoft/media-field_type/resources/lang/tr/button.php
@@ -1,5 +1,5 @@
'Ana',
+ 'showOn' => 'Vitrin',
];
diff --git a/addons/default/visiosoft/media-field_type/resources/views/input.twig b/addons/default/visiosoft/media-field_type/resources/views/input.twig
index f16cc0988..b4cd48d09 100644
--- a/addons/default/visiosoft/media-field_type/resources/views/input.twig
+++ b/addons/default/visiosoft/media-field_type/resources/views/input.twig
@@ -1,8 +1,3 @@
-
-
{{ asset_add('scripts.js', 'visiosoft.field_type.media::js/jquery-sortable.js') }}
{% if not (field_type.readonly) %}
diff --git a/addons/default/visiosoft/media-field_type/src/Table/ValueTableBuilder.php b/addons/default/visiosoft/media-field_type/src/Table/ValueTableBuilder.php
index 614c4c4d8..6c4ff96a8 100644
--- a/addons/default/visiosoft/media-field_type/src/Table/ValueTableBuilder.php
+++ b/addons/default/visiosoft/media-field_type/src/Table/ValueTableBuilder.php
@@ -64,7 +64,7 @@ class ValueTableBuilder extends TableBuilder
],
'rotate' => [
'target' => '_blank',
- 'icon' => 'fa fa-repeat',
+ 'icon' => 'fas fa-redo',
'type' => 'info',
'text' => '',
'attributes' => [
diff --git a/addons/default/visiosoft/profile-module/resources/views/profile/show-my-sale.twig b/addons/default/visiosoft/profile-module/resources/views/profile/show-my-sale.twig
index e48901605..ac4371e4d 100644
--- a/addons/default/visiosoft/profile-module/resources/views/profile/show-my-sale.twig
+++ b/addons/default/visiosoft/profile-module/resources/views/profile/show-my-sale.twig
@@ -29,7 +29,7 @@
 %}
- {{ img('theme::images/no-image.png').url }}
+ {{ img('visiosoft.module.advs::images/no-image.png').url }}
{% else %}
{{ detail.getPhoto }}
{% endif %}
)