您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
31 行
1015 B
PHP
31 行
1015 B
PHP
<?php
|
|
|
|
namespace Resources\Views\Segments;
|
|
|
|
use App\Models\Part;
|
|
use App\Models\Setting;
|
|
|
|
class LianaInvoice
|
|
{
|
|
public static function onAdd(Part $part = null)
|
|
{
|
|
|
|
$setting = new Setting();
|
|
$setting->section = 'theme';
|
|
$setting->key = $part->area->name . '_' . $part->part.'_desc';
|
|
$setting->value = 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusamus aliquid consequuntur culpa cupiditate dignissimos dolor doloremque error facilis ipsum iure officia quam qui, tempora! Fuga harum impedit iusto magnam veniam.';
|
|
$setting->size = 12;
|
|
$setting->title = $part->area->name . ' ' . $part->part. ' invoice footer description';
|
|
$setting->type = 'EDITOR';
|
|
$setting->save();
|
|
}
|
|
public static function onRemove(Part $part = null)
|
|
{
|
|
Setting::where('key',$part->area->name . '_' . $part->part.'_desc')->first()?->delete();
|
|
}
|
|
public static function onMount(Part $part = null)
|
|
{
|
|
return $part;
|
|
}
|
|
}
|