mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
25 lines
614 B
PHP
25 lines
614 B
PHP
<?php namespace System\Models;
|
|
|
|
use Model;
|
|
use System\Classes\ApplicationException;
|
|
|
|
class EmailLayout extends Model
|
|
{
|
|
/**
|
|
* @var string The database table used by the model.
|
|
*/
|
|
protected $table = 'system_email_layouts';
|
|
|
|
public $rules = [
|
|
'code' => 'required|unique:system_email_layouts',
|
|
'name' => 'required',
|
|
'content_html' => 'required',
|
|
];
|
|
|
|
public function beforeDelete()
|
|
{
|
|
if ($this->is_locked)
|
|
throw new ApplicationException('Cannot delete this template because it is locked');
|
|
|
|
}
|
|
} |