mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
849 B
PHP
32 lines
849 B
PHP
<?php
|
|
|
|
namespace Resources\Views\Segments;
|
|
|
|
use App\Models\Part;
|
|
use App\Models\Setting;
|
|
|
|
class SimpleGoTop
|
|
{
|
|
public static function onAdd(Part $part = null)
|
|
{
|
|
$setting = new Setting();
|
|
$setting->section = 'theme';
|
|
$setting->key = $part->area->name . '_' . $part->part.'_icon';
|
|
$setting->value = 'ri-arrow-up-line';
|
|
$setting->size = 12;
|
|
$setting->type = 'ICON';
|
|
// $setting->data = json_encode(['xmin' => 2, 'xmax' => 6]);
|
|
$setting->title = $part->area->name . ' ' . $part->part. ' icon ';
|
|
$setting->save();
|
|
}
|
|
public static function onRemove(Part $part = null)
|
|
{
|
|
Setting::where('key',$part->area->name . '_' . $part->part.'_icon')->first()?->delete();
|
|
|
|
}
|
|
public static function onMount(Part $part = null)
|
|
{
|
|
return $part;
|
|
}
|
|
}
|