EstudioJuridicoAlmagro_Web/www/wpv_common/widgets/tpl/flickr-config.php
david f72df580c3 - Importación inicial
- Ticket 1166 -> Orden de los idiomas ES FR EN RU

git-svn-id: https://192.168.0.254/svn/Proyectos.EstudioJuridicoAlmagro_Web/trunk@2 c22fe52d-42d7-ba4f-95f7-33effcf65713
2013-02-27 15:39:05 +00:00

31 lines
1.7 KiB
PHP

<p>
<label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'wpv'); ?></label>
<input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $title; ?>" />
</p>
<p>
<label for="<?php echo $this->get_field_id('type'); ?>"><?php _e( 'Type:', 'wpv' ); ?></label>
<select name="<?php echo $this->get_field_name('type'); ?>" id="<?php echo $this->get_field_id('type'); ?>" class="widefat">
<option value="user"<?php selected($type,'user');?>>User</option>
<option value="group"<?php selected($type,'group');?>>Group</option>
</select>
</p>
<p>
<label for="<?php echo $this->get_field_id('flickr_id'); ?>"><?php _e('Flickr ID (<a href="http://www.idgettr.com" target="_blank">idGettr</a>):', 'wpv'); ?></label>
<input class="widefat" id="<?php echo $this->get_field_id('flickr_id'); ?>" name="<?php echo $this->get_field_name('flickr_id'); ?>" type="text" value="<?php echo $flickr_id; ?>" />
</p>
<p>
<label for="<?php echo $this->get_field_id('count'); ?>"><?php _e('Number of photo to show:', 'wpv'); ?></label>
<input id="<?php echo $this->get_field_id('count'); ?>" name="<?php echo $this->get_field_name('count'); ?>" type="text" value="<?php echo $count; ?>" size="3" />
</p>
<p>
<label for="<?php echo $this->get_field_id('display'); ?>"><?php _e('Method for display your photos:', 'wpv'); ?></label>
<select id="<?php echo $this->get_field_id('display'); ?>" name="<?php echo $this->get_field_name('display'); ?>">
<option<?php selected($display, 'latest')?> value="latest"><?php _e('Latest', 'wpv'); ?></option>
<option<?php selected($display, 'random')?> value="random"><?php _e('Random', 'wpv'); ?></option>
</select>
</p>