| | |
| | | { |
| | | return $this->integrationConfigs; |
| | | } |
| | | public function hasIntegration(string $integration) { |
| | | public function hasIntegration(string $integration):bool |
| | | { |
| | | return array_key_exists($integration, $this->integrationConfigs); |
| | | } |
| | | public function hasAnyIntegrations(array $integrations = []):bool |
| | |
| | | } |
| | | return $this; |
| | | } |
| | | public function unsetAll(array $flags):self |
| | | { |
| | | $flags = array_filter($flags, function($flag) { |
| | | return in_array($flag, static::$allFlags); |
| | | }); |
| | | foreach ($flags as $flag) { |
| | | $this->$flag = false; |
| | | switch ($flag) { |
| | | case 'is_content': |
| | | remove_action('init', [$this, 'setupContent'], 20); |
| | | break; |
| | | case 'is_glossary': |
| | | $this->hide_single = false; |
| | | break; |
| | | } |
| | | } |
| | | return $this; |
| | | } |
| | | public function prefixWith(string $prefix):self |
| | | { |
| | | $this->prefix_with = sanitize_title($prefix); |
| | |
| | | protected function getBreadcrumbs():Breadcrumbs |
| | | { |
| | | if (!isset($this->breadcrumbs)) { |
| | | $this->breadcrumbs = new Breadcrumbs($this->slug, $this); |
| | | $this->breadcrumbs = new Breadcrumbs($this->slug); |
| | | } |
| | | |
| | | return $this->breadcrumbs; |
| | |
| | | protected function getDashboard():Dashboard |
| | | { |
| | | if (!isset($this->dashboard)) { |
| | | $this->dashboard = new Dashboard($this->plural, $this); |
| | | $this->dashboard = new Dashboard($this->plural); |
| | | } |
| | | |
| | | return $this->dashboard; |
| | |
| | | } |
| | | public function addSection(string $title):Section |
| | | { |
| | | $slug = sanitize_title($title); |
| | | if (!array_key_exists($slug, $this->sections)) { |
| | | $section = new Section($title, $this); |
| | | $this->sections[] = $section; |
| | | return $section; |
| | | $this->sections[$slug] = $section; |
| | | } |
| | | |
| | | return $this->sections[$slug]; |
| | | } |
| | | |
| | | public static function maybeBuildSections():void |
| | | { |
| | | foreach (self::$instances as $inst) { |
| | | $inst->buildSections(); |
| | | } |
| | | } |
| | | protected function buildSections():void |
| | | { |
| | | $fields = $this->getFields(); |
| | | $sections = array_unique(array_values(array_map(function ($f) { |
| | | return array_key_exists('section', $f) && !is_null($f['section']) ? $f['section'] : 'main'; |
| | | }, $fields))); |
| | | |
| | | 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) { |
| | | $tmp = array_key_exists('section', $f) && !is_null($f['section']) ? $f['section'] : 'main'; |
| | | return $s === $tmp; |
| | | })); |
| | | $section->setFields($sectionFields); |
| | | $this->sections[$s] = $section; |
| | | } |
| | | } |
| | | |
| | | public function setSectionOrder(array $sections):self |
| | |
| | | $this->hideSingleHandler = new HideSingle($this->slug, $this); |
| | | } |
| | | if ($this->is_timeline) { |
| | | $this->isTimelineHandler = new MakeTimelineType($this->slug, $this); |
| | | $this->isTimelineHandler = new MakeTimelineType($this->slug); |
| | | $this->registrar->hierarchical = true; |
| | | } |
| | | if ($this->is_calendar) { |
| | |
| | | public static function ensureInstanced():void |
| | | { |
| | | if (empty(self::$instances)) { |
| | | do_action('jvbDefineRegistrar'); |
| | | do_action('jvbDefineRegistrarFields'); |
| | | do_action('jvb_define_registrar'); |
| | | do_action('jvb_define_fields'); |
| | | } |
| | | } |
| | | |