PATH:
home
/
letacommog
/
laindinois
/
OLD
/
wp-content
/
plugins
/
wpseo-news
/
classes
<?php /** * Yoast SEO: News plugin file. * * @package WPSEO_News */ /** * Implements the helpscout beacon suggestions for wpseo news. */ class WPSEO_News_Beacon_Setting implements Yoast_HelpScout_Beacon_Setting { /** * {@inheritdoc} * * @param string $page The current page. */ public function get_suggestions( $page ) { switch ( $page ) { case 'wpseo_news': return array( '538308c0e4b087d9517672fe', // See: http://kb.yoast.com/article/110-configuration-guide-for-news-seo. '53901dc1e4b044eb1018e206', // See: http://kb.yoast.com/article/133-publication-date-time-in-the-news-xml-sitemap. '5375e852e4b03c6512282d5a', // See: http://kb.yoast.com/article/36-my-sitemap-is-blank-what-s-wrong. ); } return array(); } /** * Returns a product for a a certain admin page. * * @param string $page The current admin page we are on. * * @return Yoast_Product[] A product to use for sending data to helpscout. */ public function get_products( $page ) { switch ( $page ) { case 'wpseo_news': return array( new WPSEO_News_Product() ); } return array(); } /** * Returns a list of config values for a a certain admin page. * * @param string $page The current admin page we are on. * * @return array A list with configuration for the beacon. */ public function get_config( $page ) { return array(); } }
[+]
..
[-] upgrade-manager.php
[edit]
[-] sitemap.php
[edit]
[-] head.php
[edit]
[-] class-wpseo-news.php
[edit]
[-] class-sitemap-item.php
[edit]
[-] class-meta-box.php
[edit]
[-] sitemap-timezone.php
[edit]
[-] class-beacon-setting.php
[edit]
[-] meta-box.php
[edit]
[-] wpseo-news.php
[edit]
[-] class-product.php
[edit]
[-] javascript-strings.php
[edit]
[-] sitemap-images.php
[edit]
[-] class-head.php
[edit]
[-] class-sitemap.php
[edit]
[-] class-upgrade-manager.php
[edit]
[-] beacon-setting.php
[edit]
[-] class-admin-page.php
[edit]
[-] class-news-wrappers.php
[edit]
[-] class-sitemap-images.php
[edit]
[-] wrappers.php
[edit]
[-] sitemap-item.php
[edit]
[-] product.php
[edit]
[-] class-javascript-strings.php
[edit]
[-] schema.php
[edit]
[-] admin-page.php
[edit]
[-] excludable-taxonomies.php
[edit]
[-] class-sitemap-timezone.php
[edit]