| | |
| | | use JVBase\registrar\config\Directory; |
| | | use JVBase\registrar\config\Feed; |
| | | use JVBase\registrar\config\Integration; |
| | | use JVBase\registrar\config\Register; |
| | | use JVBase\registrar\config\Section; |
| | | use JVBase\registrar\config\SEO; |
| | | use JVBase\registrar\helpers\AddIntegrationFields; |
| | |
| | | protected Dashboard $dashboard; |
| | | protected Directory|false $directory; |
| | | protected Feed|false $feed; |
| | | protected Register|false $login; |
| | | // protected Management $management; |
| | | // protected Responses $responses; |
| | | protected ?SEO $seo = null; |
| | |
| | | |
| | | public function config(string $config):mixed |
| | | { |
| | | $allowed = ['breadcrumbs','calendar','dashboard','directory','feed','management','has_responses','seo','trackchanges','verification']; |
| | | $allowed = ['breadcrumbs','calendar','register','login','dashboard','directory','feed','management','has_responses','seo','trackchanges','verification']; |
| | | if (!in_array(strtolower($config), $allowed)) { |
| | | error_log('Invalid config requested from Registrar: '.$config); |
| | | return []; |
| | |
| | | 'breadcrumbs' => $this->getBreadcrumbs(), |
| | | 'dashboard' => $this->getDashboard(), |
| | | 'directory' => $this->getDirectory(), |
| | | 'register','login' => $this->getLogin(), |
| | | 'feed' => $this->getFeed(), |
| | | 'management' => $this->getManagement(), |
| | | 'has_responses' => $this->getResponses(), |
| | |
| | | 'verification' => $this->getVerification() |
| | | }; |
| | | } |
| | | protected function getLogin():Register|false |
| | | { |
| | | if (!isset($this->login)) { |
| | | $this->login = new Register(); |
| | | } |
| | | return $this->login; |
| | | } |
| | | protected function getBreadcrumbs():Breadcrumbs |
| | | { |
| | | if (!isset($this->breadcrumbs)) { |
| | |
| | | public function getSections():array |
| | | { |
| | | $allSections = array_map(function($section) { |
| | | return $section->getConfig; |
| | | return $section->getConfig(); |
| | | }, $this->sections); |
| | | |
| | | |
| | | if (!empty($this->sectionOrder)) { |
| | | $allSections['order'] = $this->sectionOrder; |
| | | } |
| | |
| | | foreach ($sections as $s) { |
| | | $section = new Section($s, $this); |
| | | $section->setTitle(ucwords(implode(' ', explode('-', $s)))); |
| | | $sectionFields = array_map(function ($f) { |
| | | return $f['name']; |
| | | }, array_filter($fields, function ($f) use ($s) { |
| | | $sectionFields = array_filter($fields, function ($f) use ($s) { |
| | | $tmp = array_key_exists('section', $f) && !is_null($f['section']) ? $f['section'] : 'main'; |
| | | return $s === $tmp; |
| | | })); |
| | | $section->setFields($sectionFields); |
| | | }); |
| | | $section->setFields(array_keys($sectionFields)); |
| | | $this->sections[$s] = $section; |
| | | } |
| | | } |