Yoast\WP\SEO\Surfaces
Helpers_Surface::get_helper_class()
Get the class name from a helper slug
Метод класса: Helpers_Surface{}
Хуков нет.
Возвращает
Строку
.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->get_helper_class( $helper );
- $helper(строка) (обязательный)
- The name of the helper.
Код Helpers_Surface::get_helper_class() Helpers Surface::get helper class Yoast 23.4
protected function get_helper_class( $helper ) { $helper = \implode( '_', \array_map( 'ucfirst', \explode( '_', $helper ) ) ); return "Yoast\WP\SEO\Helpers\\{$helper}_Helper"; }