PATH:
home
/
letacommog
/
lesfinessaveurs
/
wp-content
/
plugins
/
wordpress-seo
/
admin
/
config-ui
/
fields
<?php /** * WPSEO plugin file. * * @package WPSEO\Admin\ConfigurationUI */ /** * Holds the choices for the Configuration method to be chosen in the first step of the wizard */ class WPSEO_Config_Field_Configuration_Choices extends WPSEO_Config_Field { /** * WPSEO_Config_Field_Choice constructor. */ public function __construct() { parent::__construct( 'configurationChoices', 'ConfigurationChoices' ); $this->properties['choices'] = array(); } /** * Adds a choice to the properties * * @param string $title The title of the choice. * @param string $copy The text explaining the choice. * @param array $button The button details. * @param null|string $image The image accompanying the choice. */ public function add_choice( $title, $copy, $button, $image = null ) { $choice = array( 'title' => $title, 'copy' => $copy, 'button' => $button, ); if ( ! empty( $image ) ) { $choice['image'] = $image; } $this->properties['choices'][] = $choice; } }
[+]
..
[-] class-field-choice-post-type.php
[edit]
[-] class-field-google-search-console-intro.php
[edit]
[-] class-field-profile-url-googleplus.php
[edit]
[-] class-field-multiple-authors.php
[edit]
[-] class-field-connect-google-search-console.php
[edit]
[-] class-field-environment.php
[edit]
[-] class-field-title-intro.php
[edit]
[-] class-field-configuration-choices.php
[edit]
[-] class-field-company-or-person.php
[edit]
[-] class-field-social-profiles-intro.php
[edit]
[-] class-field-success-message.php
[edit]
[-] class-field-profile-url-linkedin.php
[edit]
[-] class-field-post-type-visibility.php
[edit]
[-] class-field-separator.php
[edit]
[-] class-field-upsell-site-review.php
[edit]
[-] class-field-suggestions.php
[edit]
[-] class-field-profile-url-facebook.php
[edit]
[-] class-field-company-name.php
[edit]
[-] class-field-profile-url-myspace.php
[edit]
[-] class-field-person-name.php
[edit]
[-] class-field-site-type.php
[edit]
[-] class-field-site-name.php
[edit]
[-] class-field-profile-url-pinterest.php
[edit]
[-] class-field-profile-url-youtube.php
[edit]
[-] class-field-choice.php
[edit]
[-] class-field-profile-url-instagram.php
[edit]
[-] class-field-mailchimp-signup.php
[edit]
[-] class-field-profile-url-twitter.php
[edit]
[-] class-field.php
[edit]
[-] class-field-upsell-configuration-service.php
[edit]
[-] class-field-company-logo.php
[edit]