golden hour
/home/phakp/public_html/wp-content/plugins/stackable-ultimate-gutenberg-blocks/src/help
⬆️ Go Up
Upload
File/Folder
Size
Actions
help-tooltip.php
743 B
Del
OK
index.php
88 B
Del
OK
welcome-tutorial-video.php
1.46 KB
Del
OK
Edit: help-tooltip.php
<?php /** * Help Tooltip settings. */ // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } if ( ! class_exists( 'Stackable_Help_Tooltip' ) ) { class Stackable_Help_Tooltip { /** * Constructor */ public function __construct() { add_action( 'init', array( $this, 'register_settings' ) ); } public function register_settings() { register_setting( 'stackable_help_tooltip_disabled', 'stackable_help_tooltip_disabled', array( 'type' => 'string', 'description' => __( 'Disable Stackable help video tooltips', STACKABLE_I18N ), 'sanitize_callback' => 'sanitize_text_field', 'show_in_rest' => true, 'default' => '', ) ); } } new Stackable_Help_Tooltip(); }
Save