for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @since 3.31.0
* @author Naveen Muthusamy <[email protected]>
*/
namespace Wordlift\Videoobject\Tabs;
class Settings_Tab {
public function init() {
add_filter( 'wl_admin_page_tabs', function ( $tabs ) {
$tabs[] = array(
'slug' => 'videoobject-settings',
'title' => __( 'Video Settings', 'wordlift' )
);
return $tabs;
} );
}