Yoast\WP\SEO\Surfaces
Helpers_Surface{}
Class Helpers_Surface.
Surface for the indexables.
Хуков нет.
Использование
$Helpers_Surface = new Helpers_Surface(); // use class methods
Методы
- public __construct(
- public __get( $helper )
- public __isset( $helper )
- protected get_helper_class( $helper )
Код Helpers_Surface{} Helpers Surface{} Yoast 18.8
class Helpers_Surface { /** * The DI container. * * @var ContainerInterface */ private $container; /** * The open_graph helper namespace * * @var Open_Graph_Helpers_Surface */ public $open_graph; /** * The schema helper namespace * * @var Schema_Helpers_Surface */ public $schema; /** * The twitter helper namespace * * @var Twitter_Helpers_Surface */ public $twitter; /** * Loader constructor. * * @param ContainerInterface $container The dependency injection container. * @param Open_Graph_Helpers_Surface $open_graph The OpenGraph helpers surface. * @param Schema_Helpers_Surface $schema The Schema helpers surface. * @param Twitter_Helpers_Surface $twitter The Twitter helpers surface. */ public function __construct( ContainerInterface $container, Open_Graph_Helpers_Surface $open_graph, Schema_Helpers_Surface $schema, Twitter_Helpers_Surface $twitter ) { $this->container = $container; $this->open_graph = $open_graph; $this->schema = $schema; $this->twitter = $twitter; } /** * Magic getter for getting helper classes. * * @param string $helper The helper to get. * * @return mixed The helper class. */ public function __get( $helper ) { return $this->container->get( $this->get_helper_class( $helper ) ); } /** * Magic isset for ensuring helper exists. * * @param string $helper The helper to get. * * @return bool The helper class. */ public function __isset( $helper ) { return $this->container->has( $this->get_helper_class( $helper ) ); } /** * Get the class name from a helper slug * * @param string $helper The name of the helper. * * @return string */ protected function get_helper_class( $helper ) { $helper = \implode( '_', \array_map( 'ucfirst', \explode( '_', $helper ) ) ); return "Yoast\WP\SEO\Helpers\\{$helper}_Helper"; } }