git-svn-id: https://192.168.0.254/svn/Proyectos.EstudioJuridicoAlmagro_Web/trunk@3 c22fe52d-42d7-ba4f-95f7-33effcf65713
44 lines
2.4 KiB
PHP
44 lines
2.4 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('address'); ?>"><?php _e('Address:', 'wpv'); ?></label>
|
|
<input class="widefat" id="<?php echo $this->get_field_id('address'); ?>" name="<?php echo $this->get_field_name('address'); ?>" type="text" value="<?php echo $address; ?>" />
|
|
<small><?php _e('Choose either an address or latitute and logtitude', 'wpv')?></small>
|
|
</p>
|
|
|
|
<p>
|
|
<label for="<?php echo $this->get_field_id('latitude'); ?>"><?php _e('Latitude:', 'wpv'); ?></label>
|
|
<input class="widefat" id="<?php echo $this->get_field_id('latitude'); ?>" name="<?php echo $this->get_field_name('latitude'); ?>" type="text" value="<?php echo $latitude; ?>" />
|
|
</p>
|
|
|
|
<p>
|
|
<label for="<?php echo $this->get_field_id('longitude'); ?>"><?php _e('Longitude:', 'wpv'); ?></label>
|
|
<input class="widefat" id="<?php echo $this->get_field_id('longitude'); ?>" name="<?php echo $this->get_field_name('longitude'); ?>" type="text" value="<?php echo $longitude; ?>" />
|
|
</p>
|
|
|
|
<p>
|
|
<label for="<?php echo $this->get_field_id('zoom'); ?>"><?php _e('Zoom level:', 'wpv'); ?></label>
|
|
<select id="<?php echo $this->get_field_id('zoom'); ?>" name="<?php echo $this->get_field_name('zoom'); ?>">
|
|
<?php for($i=1; $i<20; $i++): ?>
|
|
<option <?php selected($zoom, $i) ?>><?php echo $i ?></option>
|
|
<?php endfor ?>
|
|
</select>
|
|
</p>
|
|
|
|
<p>
|
|
<label for="<?php echo $this->get_field_id('html'); ?>"><?php _e('Content for the marker:', 'wpv'); ?></label>
|
|
<input class="widefat" id="<?php echo $this->get_field_id('html'); ?>" name="<?php echo $this->get_field_name('html'); ?>" type="text" value="<?php echo $html; ?>" />
|
|
</p>
|
|
|
|
<p>
|
|
<input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('popup'); ?>" name="<?php echo $this->get_field_name('popup'); ?>"<?php checked($popup); ?> />
|
|
<label for="<?php echo $this->get_field_id('popup'); ?>"><?php _e('Auto popup the info?', 'wpv'); ?></label>
|
|
</p>
|
|
|
|
<p>
|
|
<label for="<?php echo $this->get_field_id('height'); ?>"><?php _e('Height:', 'wpv'); ?></label>
|
|
<input class="widefat" id="<?php echo $this->get_field_id('height'); ?>" name="<?php echo $this->get_field_name('height'); ?>" type="text" value="<?php echo $height; ?>" />
|
|
</p>
|