PATH:
home
/
letacommog
/
lenazen
/
wp-content
/
plugins
/
wordpress-seo-premium
/
admin
/
config-ui
<?php /** * WPSEO plugin file. * * @package WPSEO\Admin\ConfigurationUI */ /** * Class WPSEO_Configuration_Structure */ class WPSEO_Configuration_Structure { /** * Registered steps. * * @var array */ protected $steps = array(); /** * List of fields for each configuration step. * * This list does not include the fields for the 'postTypeVisibility' * step as that list will be generated on the fly. * * @var array */ private $fields = array( 'environment_type' => array( 'environment_type' ), 'siteType' => array( 'siteType' ), 'publishingEntity' => array( 'publishingEntity', 'publishingEntityType', 'publishingEntityCompanyName', 'publishingEntityCompanyLogo', 'publishingEntityPersonId', 'profileUrlFacebook', 'profileUrlTwitter', 'profileUrlInstagram', 'profileUrlLinkedIn', 'profileUrlMySpace', 'profileUrlPinterest', 'profileUrlYouTube', 'profileUrlWikipedia', ), 'multipleAuthors' => array( 'multipleAuthors' ), 'connectGoogleSearchConsole' => array( 'googleSearchConsoleIntro', 'connectGoogleSearchConsole', ), 'titleTemplate' => array( 'titleIntro', 'siteName', 'separator', ), 'newsletter' => array( 'mailchimpSignup' ), 'suggestions' => array( 'suggestions' ), 'success' => array( 'successMessage' ), ); /** * WPSEO_Configuration_Structure constructor. */ public function initialize() { $this->add_step( 'environment-type', __( 'Environment', 'wordpress-seo' ), $this->fields['environment_type'] ); $this->add_step( 'site-type', __( 'Site type', 'wordpress-seo' ), $this->fields['siteType'] ); $this->add_step( 'publishing-entity', __( 'Organization or person', 'wordpress-seo' ), $this->fields['publishingEntity'] ); $fields = array( 'postTypeVisibility' ); $post_type_factory = new WPSEO_Config_Factory_Post_Type(); foreach ( $post_type_factory->get_fields() as $post_type_field ) { $fields[] = $post_type_field->get_identifier(); } $this->add_step( 'post-type-visibility', __( 'Search engine visibility', 'wordpress-seo' ), $fields ); $this->add_step( 'multiple-authors', __( 'Multiple authors', 'wordpress-seo' ), $this->fields['multipleAuthors'] ); // @codingStandardsIgnoreStart -- These lines are commented out temporarily, see next line. // Commented out since 11.1.1 patch because Google removed their GSC API. // $this->add_step( // 'connect-google-search-console', // __( 'Google Search Console', 'wordpress-seo' ), // $this->fields['connectGoogleSearchConsole'] // ); // @codingStandardsIgnoreEnd $this->add_step( 'title-template', __( 'Title settings', 'wordpress-seo' ), $this->fields['titleTemplate'] ); $this->add_step( 'newsletter', __( 'Newsletter', 'wordpress-seo' ), $this->fields['newsletter'], true, true ); $this->add_step( 'suggestions', __( 'You might like', 'wordpress-seo' ), $this->fields['suggestions'], true, true ); $this->add_step( 'success', __( 'Success!', 'wordpress-seo' ), $this->fields['success'], true, true ); } /** * Add a step to the structure * * @param string $identifier Identifier for this step. * @param string $title Title to display for this step. * @param array $fields Fields to use on the step. * @param bool $navigation Show navigation buttons. * @param bool $full_width Wheter the step content is full width or not. */ protected function add_step( $identifier, $title, $fields, $navigation = true, $full_width = false ) { $this->steps[ $identifier ] = array( 'title' => $title, 'fields' => $fields, 'hideNavigation' => ! (bool) $navigation, 'fullWidth' => $full_width, ); } /** * Retrieve the registered steps. * * @return array */ public function retrieve() { return $this->steps; } }
[+]
..
[+]
factories
[-] class-configuration-endpoint.php
[edit]
[-] class-configuration-service.php
[edit]
[-] class-configuration-components.php
[edit]
[-] class-configuration-structure.php
[edit]
[+]
fields
[-] class-configuration-page.php
[edit]
[+]
components
[-] class-configuration-translations.php
[edit]
[-] class-configuration-storage.php
[edit]
[-] class-configuration-options-adapter.php
[edit]