mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
Merge remote-tracking branch 'origin/fatihalp' into fatihalp
This commit is contained in:
commit
42b336738c
@ -320,11 +320,8 @@ class AdvRepository extends EntryRepository implements AdvRepositoryInterface
|
||||
'mime_type' => $image->mime,
|
||||
'extension' => $image->extension,
|
||||
]);
|
||||
|
||||
$coverPhoto = 'files/images/' . $fileName;
|
||||
} else {
|
||||
$coverPhoto = $thumbnail->make()->path();
|
||||
}
|
||||
$coverPhoto = 'files/images/' . $fileName;
|
||||
} else {
|
||||
$coverPhoto = null;
|
||||
}
|
||||
|
||||
@ -3,14 +3,6 @@
|
||||
|
||||
<div class="col left-categories-section mx-0">
|
||||
<ul class="categories-list p-0 d-none d-sm-block mb-0">
|
||||
<li class="categories-list-li category-icon border-bottom-0 mt-0">
|
||||
<img src="{{ img('visiosoft.theme.base::images/store-search.png').url }}" class="img-responsive">
|
||||
<a href="{{ url_route('store::list') }}" class="main-category">
|
||||
<span class="text-dark" class="text-dark">
|
||||
{{ trans('visiosoft.theme.base::field.company_directory') }}
|
||||
</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="categories-list-li category-icon border-bottom-0 mt-0">
|
||||
<img src="{{ img('visiosoft.theme.base::images/popular-ads.png').url }}" class="img-responsive">
|
||||
<a href="{{ url_route('visiosoft.module.advs::list') }}?sort_by=popular" class="main-category">
|
||||
@ -27,14 +19,6 @@
|
||||
</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="categories-list-li category-icon mt-0 pb-3">
|
||||
<img src="{{ img('visiosoft.theme.base::images/get-ads.png').url }}" class="img-responsive">
|
||||
<a href="{{ url_route('visiosoft.module.advs::list') }}?get_ads=true" class="main-category">
|
||||
<span class="text-dark">
|
||||
{{ trans('visiosoft.theme.base::field.secure_e-commerce_ads') }}
|
||||
</span>
|
||||
</a>
|
||||
</li>
|
||||
{{ addBlock('base/leftSidebar')|raw }}
|
||||
</ul>
|
||||
{{ addBlock('base/categoriesRow')|raw }}
|
||||
|
||||
@ -4,7 +4,6 @@ use Anomaly\Streams\Platform\Database\Migration\Migration;
|
||||
|
||||
class VisiosoftModuleProfileCreateBirthdayField extends Migration
|
||||
{
|
||||
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
@ -20,8 +19,8 @@ class VisiosoftModuleProfileCreateBirthdayField extends Migration
|
||||
->first();
|
||||
|
||||
if (!$field) {
|
||||
$field = $this->fields()->create([
|
||||
'name' => trans('visiosoft.module.profile::field.birthday.name'),
|
||||
$field = $this->fields()->newQuery()->create([
|
||||
'name' => 'visiosoft.module.profile::field.birthday.name',
|
||||
'namespace' => 'users',
|
||||
'slug' => 'birthday',
|
||||
'type' => 'anomaly.field_type.datetime',
|
||||
@ -32,7 +31,7 @@ class VisiosoftModuleProfileCreateBirthdayField extends Migration
|
||||
]
|
||||
]);
|
||||
|
||||
$this->assignments()->create([
|
||||
$this->assignments()->newQuery()->create([
|
||||
'stream_id' => $stream->id,
|
||||
'field_id' => $field->id
|
||||
]);
|
||||
@ -47,10 +46,5 @@ class VisiosoftModuleProfileCreateBirthdayField extends Migration
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
/*
|
||||
* I never go back on my word!
|
||||
* That's my nindo: my ninja way!
|
||||
* NARUTO
|
||||
*/
|
||||
}
|
||||
}
|
||||
|
||||
@ -112,7 +112,7 @@ class DatabaseSeeder extends Seeder
|
||||
]
|
||||
);
|
||||
|
||||
$repository = "https://raw.githubusercontent.com/openclassify/Openclassify-Demo-Data/master/";
|
||||
$repository = "https://raw.githubusercontent.com/openclassify/Openclassify-Demo-Data/upgrade3.8/";
|
||||
file_put_contents(storage_path('advs.sql'), fopen($repository . "advs.sql", 'r'));
|
||||
file_put_contents(storage_path('settings.sql'), fopen($repository . "settings.sql", 'r'));
|
||||
file_put_contents(storage_path('categories.sql'), fopen($repository . "categories.sql", 'r'));
|
||||
|
||||
Loading…
Reference in New Issue
Block a user