%PDF- %PDF-
Direktori : /var/www/html/buggydubrovnik.com/wp-content/themes/Avada/includes/ |
Current File : /var/www/html/buggydubrovnik.com/wp-content/themes/Avada/includes/class-fusion-widget-flickr.php |
<?php class Fusion_Widget_Flickr extends WP_Widget { function __construct() { $widget_ops = array( 'classname' => 'flickr', 'description' => __( 'The most recent photos from flickr.', 'Avada' ) ); $control_ops = array( 'id_base' => 'flickr-widget' ); parent::__construct( 'flickr-widget', 'Avada: Flickr', $widget_ops, $control_ops ); } function widget( $args, $instance ) { extract( $args ); $title = apply_filters( 'widget_title', isset( $instance['title'] ) ? $instance['title'] : '' ); $screen_name = $instance['screen_name']; $number = $instance['number']; $api = $instance['api']; if ( empty( $api ) ) { $api = 'c9d2c2fda03a2ff487cb4769dc0781ea'; } echo $before_widget; if ( $title ) { echo $before_title . $title . $after_title; } ?> <div id="fusion-<?php echo $args['widget_id']; ?>-images"></div> <?php if ( $screen_name && $number && $api ) : ?> <script type="text/javascript"> function jsonFlickrApi(rsp) { if (rsp.stat != "ok"){ // If this executes, something broke! return; } //variable "s" is going to contain //all the markup that is generated by the loop below var s = ""; //this loop runs through every item and creates HTML for (var i=0; i < rsp.photos.photo.length; i++) { photo = rsp.photos.photo[ i ]; //notice that "t.jpg" is where you change the //size of the image t_url = "//farm" + photo.farm + ".static.flickr.com/" + photo.server + "/" + photo.id + "_" + photo.secret + "_" + "s.jpg"; p_url = "//www.flickr.com/photos/" + photo.owner + "/" + photo.id; s += '<div class="flickr_badge_image"><a href="' + p_url + '">' + '<img alt="'+ photo.title + '"src="' + t_url + '"/>' + '</a></div>'; } $container = document.getElementById( 'fusion-<?php echo $args['widget_id']; ?>-images' ); $container.innerHTML = s; } </script> <script type="text/javascript" src="https://api.flickr.com/services/rest/?format=json&method=flickr.photos.search&user_id=<?php echo $screen_name; ?>&api_key=<?php echo $api; ?>&media=photos&per_page=<?php echo $number; ?>&privacy_filter=1"></script> <script type="text/javascript" src="https://api.flickr.com/services/rest/?format=json&method=flickr.photos.search&group_id=<?php echo $screen_name; ?>&api_key=<?php echo $api; ?>&media=photos&per_page=<?php echo $number; ?>&privacy_filter=1"></script> <?php endif; echo $after_widget; } function update( $new_instance, $old_instance ) { $instance = $old_instance; $instance['title'] = strip_tags( $new_instance['title'] ); $instance['screen_name'] = $new_instance['screen_name']; $instance['number'] = $new_instance['number']; $instance['api'] = $new_instance['api']; return $instance; } function form( $instance ) { $defaults = array( 'title' => __( 'Photos from Flickr', 'Avada' ), 'screen_name' => '', 'number' => 6, 'api' => 'c9d2c2fda03a2ff487cb4769dc0781ea' ); $instance = wp_parse_args( (array) $instance, $defaults ); $flickr_getid_url = 'http://idgettr.com/'; $flickr_apply_url = 'http://www.flickr.com/services/apps/create/apply'; ?> <p> <label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:', 'Avada' ); ?></label> <input class="widefat" type="text" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" value="<?php echo $instance['title']; ?>" /> </p> <p> <label for="<?php echo $this->get_field_id( 'screen_name' ); ?>"><?php printf( __( 'Flickr ID (%sGet your flickr ID%s):', 'Avada' ), '<a href="' . $flickr_getid_url . '">', '</a>' ); ?></label> <input class="widefat" type="text" id="<?php echo $this->get_field_id( 'screen_name' ); ?>" name="<?php echo $this->get_field_name( 'screen_name' ); ?>" value="<?php echo $instance['screen_name']; ?>" /> </p> <p> <label for="<?php echo $this->get_field_id( 'number' ); ?>"><?php _e( 'Number of photos to show:', 'Avada' ); ?></label> <input class="widefat" type="text" style="width: 30px;" id="<?php echo $this->get_field_id( 'number' ); ?>" name="<?php echo $this->get_field_name( 'number' ); ?>" value="<?php echo $instance['number']; ?>" /> </p> <p> <label for="<?php echo $this->get_field_id( 'api' ); ?>"><?php printf( __( 'API key (Use default or get your own from %sFlickr APP Garden%s):', 'Avada' ), '<a href="' . $flickr_apply_url . '">', '</a>' ); ?></label> <input class="widefat" type="text" id="<?php echo $this->get_field_id( 'api' ); ?>" name="<?php echo $this->get_field_name( 'api' ); ?>" value="<?php echo $instance['api']; ?>" /> <small><?php printf( __( 'Default key is: %s', 'Avada' ), 'c9d2c2fda03a2ff487cb4769dc0781ea' ); ?></small> </p> <?php } } // Omit closing PHP tag to avoid "Headers already sent" issues.