=minor fix to edit form in CRUDSkeleton.php. Still need to determine why taxonomy fields aren't rendering
| | |
| | | return ''; |
| | | } |
| | | |
| | | protected static function buildInput(string $content):string |
| | | public static function buildInput(string $content):string |
| | | { |
| | | return sprintf( |
| | | '<div class="field-input-wrapper"> |
| | |
| | | } |
| | | |
| | | protected function getApplicableStatuses(string $prefix) { |
| | | ob_start(); |
| | | foreach ($this->statuses as $status) { |
| | | if ($status === 'all' || !array_key_exists($status, $this->allowedStatuses)) { |
| | | continue; |
| | |
| | | </label> |
| | | <?php |
| | | } |
| | | $out = ob_get_clean(); |
| | | echo Form::buildInput($out); |
| | | } |
| | | } |