HEX
Server: nginx/1.27.1
System: Linux in-3 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64
User: ivenus-clone (3297)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source
Upload Files
File: /storage/v4513/ivenusin/public_html/wp-content/plugins/loginpress/classes/controls/group.php
<?php

/**
* Class for Group.
*
* @since  1.1.3
* @access public
*/
class LoginPress_Group_Control extends WP_Customize_Control {

  /**
  * The type of customize control being rendered.
  *
  * @since  1.1.3
  * @access public
  * @var    string
  */
  public $type = 'group';

  /**
  * Information text for the Group.
  *
  * @since  1.1.3
  * @access public
  * @var    string
  */
  public $info_text;

  /**
  * Enqueue scripts/styles.
  *
  * @since  1.0.17
  * @access public
  * @return void
  */
  public function enqueue() {
		wp_enqueue_style( 'loginpress-group-control-css', LOGINPRESS_DIR_URL . 'css/controls/loginpress-group-control.css', array(), LOGINPRESS_VERSION );
  }

  /**
  * Displays the control content.
  *
  * @since  1.0.17
  * @access public
  * @return void
  */
  public function render_content() {
    ?>

    <div id="input_<?php echo $this->id; ?>" class="loginpress-group-wrapper">
      <h3 class="loginpress-group-heading"><?php echo esc_attr( $this->label ); ?></h3>
      <div class="loginpress-group-info">
        <p><span class="loginpress-group-badge badges"><?php esc_html_e( 'Info:', 'loginpress' ) ?></span><?php echo esc_html( $this->info_text ); ?></p>
      </div>
    </div>


  <?php }


}
?>