This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Andizer\Plugin\YoastInternalLinks; | |
class AdminPage { | |
public const SECTION = 'andizer-internal-linking'; | |
public function register() { | |
\add_action( 'admin_menu', $this ); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// This list is not actual, because it's shortened | |
$fb_valid_fb_locales = array( | |
'ca_ES', | |
'cs_CZ', | |
'cy_GB', | |
'da_DK', | |
'de_DE', | |
'eu_ES', | |
'en_PI', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Bla { | |
private static $TargetClass = 'Foo'; | |
public function __callStatic($Method, $Args = array()) { | |
self::CallMethod($Method, $Args); | |
} | |