mirror of
https://github.com/a2nt/cms-niceties.git
synced 2024-10-22 11:05:46 +02:00
FIX: Links Widget
This commit is contained in:
parent
7c9fa8530d
commit
fab6c5f8e9
@ -1,6 +1,5 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace A2nt\CMSNiceties\Widgets;
|
||||
|
||||
use gorriecoe\Link\Models\Link;
|
||||
@ -33,12 +32,19 @@ class LinksWidget extends Widget
|
||||
'Links' => Link::class,
|
||||
];
|
||||
|
||||
private static $many_many_extraFields = [
|
||||
'Links' => [
|
||||
'Sort' => 'Int',
|
||||
],
|
||||
];
|
||||
|
||||
private static $owns = [
|
||||
'Links',
|
||||
];
|
||||
|
||||
public function getCMSFields()
|
||||
{
|
||||
//die('aaa');
|
||||
$fields = parent::getCMSFields();
|
||||
|
||||
if($this->ID) {
|
||||
@ -48,10 +54,12 @@ class LinksWidget extends Widget
|
||||
$this
|
||||
));
|
||||
} else {
|
||||
$fields->push(LiteralField::create(
|
||||
$fields->push(
|
||||
LiteralField::create(
|
||||
'Note',
|
||||
'<p class="alert alert-warning"><b>Note:</b> The widget needs to be saved before adding a link.'
|
||||
.' Enter the Title and click "+ Create" button at the bottom left corner of the screen</p>')
|
||||
.' Enter the Title and click "+ Create" button at the bottom left corner of the screen</p>'
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user