| | |
| | | |
| | | public function addPostFields():void |
| | | { |
| | | $statuses = [ |
| | | // 'all' => [ |
| | | // 'icon' => 'infinity', |
| | | // 'label' => 'Everything', |
| | | // ], |
| | | 'publish' => [ |
| | | 'icon' => 'eye', |
| | | 'label' => 'Live', |
| | | ], |
| | | 'draft' => [ |
| | | 'icon' => 'eye-closed', |
| | | 'label' => 'Hidden', |
| | | ], |
| | | 'trash' => [ |
| | | 'label' => 'Scrapped', |
| | | 'icon' => 'trash', |
| | | ], |
| | | // 'delete' => [ |
| | | // 'label' => 'Permanently Delete', |
| | | // 'icon' => 'trash' |
| | | // ] |
| | | ]; |
| | | if ($this->registrar->hasFeature('is_calendar')) { |
| | | $statuses = [ |
| | | 'future' => [ |
| | | 'icon' => '', |
| | | 'label' => 'Upcoming', |
| | | ], |
| | | 'past' => [ |
| | | 'icon' => '', |
| | | 'label' => 'Past', |
| | | ], |
| | | 'repeat' => [ |
| | | 'icon' => '', |
| | | 'label' => 'Repeating', |
| | | ], |
| | | 'draft' => [ |
| | | 'icon' => 'eye-closed', |
| | | 'label' => 'Hidden', |
| | | ], |
| | | 'trash' => [ |
| | | 'label' => 'Scrapped', |
| | | 'icon' => 'trash', |
| | | ], |
| | | ]; |
| | | } |
| | | $fields = [ |
| | | 'post_thumbnail' => [ |
| | | 'type' => 'upload', |
| | | 'subtype' => 'image', |
| | | 'multiple'=> false, |
| | | 'label' => 'Main Image', |
| | | ], |
| | |
| | | 'type' => 'datetime', |
| | | 'label' => 'Date', |
| | | ], |
| | | 'post_modified' => [ |
| | | 'type' => 'datetime', |
| | | 'label' => 'Date Modified', |
| | | 'hidden' => true, |
| | | ], |
| | | 'post_content' => [ |
| | | 'type' => 'textarea', |
| | | 'quill' => true, |
| | |
| | | 'type' => 'radio', |
| | | 'label' => 'Status', |
| | | 'default' => 'draft', |
| | | 'options' => [ |
| | | 'all' => [ |
| | | 'icon' => 'infinity', |
| | | 'label' => 'Everything', |
| | | ], |
| | | 'publish' => [ |
| | | 'icon' => 'eye', |
| | | 'label' => 'Live', |
| | | ], |
| | | 'draft' => [ |
| | | 'icon' => 'eye-closed', |
| | | 'label' => 'Hidden', |
| | | ], |
| | | 'trash' => [ |
| | | 'label' => 'Scrapped', |
| | | 'icon' => 'trash', |
| | | ], |
| | | 'delete' => [ |
| | | 'label' => 'Permanently Delete', |
| | | 'icon' => 'trash' |
| | | ] |
| | | ] |
| | | 'options' => $statuses |
| | | ] |
| | | ]; |
| | | |