| 1 |
<?php |
| 2 |
/** |
| 3 |
* Adds Borderless_Widget_Contact_Information widget. |
| 4 |
*/ |
| 5 |
class Borderless_Widget_Contact_Information extends WP_Widget { |
| 6 |
|
| 7 |
/** |
| 8 |
* Register widget with WordPress. |
| 9 |
*/ |
| 10 |
function __construct() { |
| 11 |
parent::__construct( |
| 12 |
'borderless_widget_contact_information', // Base ID |
| 13 |
__( 'Borderless - Contact Information', 'borderless' ), // Name |
| 14 |
array( 'description' => __( 'Show your contact information.', 'borderless' ), ) // Args |
| 15 |
); |
| 16 |
} |
| 17 |
|
| 18 |
/** |
| 19 |
* Front-end display of widget. |
| 20 |
* |
| 21 |
* @see WP_Widget::widget() |
| 22 |
* |
| 23 |
* @param array $args Widget arguments. |
| 24 |
* @param array $instance Saved values from database. |
| 25 |
*/ |
| 26 |
public function widget( $args, $instance ) { |
| 27 |
extract( $args ); |
| 28 |
$alignment = apply_filters('widget_alignment', $instance['alignment']); |
| 29 |
$content_color = apply_filters('widget_content_color', $instance['content_color']); |
| 30 |
$icon_color = apply_filters('widget_icon_color', $instance['icon_color']); |
| 31 |
$direction = apply_filters('widget_direction', $instance['direction']); |
| 32 |
$email = apply_filters('widget_email', $instance['email']); |
| 33 |
$fax = apply_filters('widget_fax', $instance['fax']); |
| 34 |
$hours = apply_filters('widget_hours', $instance['hours']); |
| 35 |
$location = apply_filters('widget_location', $instance['location']); |
| 36 |
$mobile = apply_filters('widget_mobile', $instance['mobile']); |
| 37 |
$name = apply_filters('widget_name', $instance['name']); |
| 38 |
$phone = apply_filters('widget_phone', $instance['phone']); |
| 39 |
$slogan = apply_filters('widget_slogan', $instance['slogan']); |
| 40 |
$title = apply_filters('widget_title', $instance['title']); |
| 41 |
|
| 42 |
// Retrieve data from the database. |
| 43 |
$options = get_option( 'borderless' ); |
| 44 |
$borderless_primary_color = isset( $options['primary_color'] ) ? $options['primary_color'] : '#0000FF'; //Primary Color |
| 45 |
$borderless_secondary_color = isset( $options['secondary_color'] ) ? $options['secondary_color'] : '#FF6819'; //Secondary Color |
| 46 |
$borderless_tertiary_color = isset( $options['tertiary_color'] ) ? $options['tertiary_color'] : '#3FCC14'; //Accent Color |
| 47 |
$borderless_text_color = isset( $options['text_color'] ) ? $options['text_color'] : '#333333'; //Text Color |
| 48 |
|
| 49 |
?> |
| 50 |
<style type="text/css"> |
| 51 |
:root { |
| 52 |
--borderless-color-primary-lighter: <?php echo luminanceLight ( $borderless_primary_color, 0.4 ); ?>; |
| 53 |
--borderless-color-primary-light: <?php echo luminanceLight ( $borderless_primary_color, 0.2 ); ?>; |
| 54 |
--borderless-color-primary: <?php echo $borderless_primary_color; ?>; |
| 55 |
--borderless-color-primary-dark: <?php echo luminanceDark ( $borderless_primary_color, 0.2 ); ?>; |
| 56 |
--borderless-color-primary-darker: <?php echo luminanceDark ( $borderless_primary_color, 0.4 ); ?>; |
| 57 |
|
| 58 |
--borderless-color-secondary-lighter: <?php echo luminanceLight ( $borderless_secondary_color, 0.4 ); ?>; |
| 59 |
--borderless-color-secondary-light: <?php echo luminanceLight ( $borderless_secondary_color, 0.2 ); ?>; |
| 60 |
--borderless-color-secondary: <?php echo $borderless_secondary_color; ?>; |
| 61 |
--borderless-color-secondary-dark: <?php echo luminanceDark ( $borderless_secondary_color, 0.2 ); ?>; |
| 62 |
--borderless-color-secondary-darker: <?php echo luminanceDark ( $borderless_secondary_color, 0.4 ); ?>; |
| 63 |
|
| 64 |
--borderless-color-tertiary-lighter: <?php echo luminanceLight ( $borderless_tertiary_color, 0.4 ); ?>; |
| 65 |
--borderless-color-tertiary-light: <?php echo luminanceLight ( $borderless_tertiary_color, 0.2 ); ?>; |
| 66 |
--borderless-color-tertiary: <?php echo $borderless_tertiary_color; ?>; |
| 67 |
--borderless-color-tertiary-dark: <?php echo luminanceDark ( $borderless_tertiary_color, 0.2 ); ?>; |
| 68 |
--borderless-color-tertiary-darker: <?php echo luminanceDark ( $borderless_tertiary_color, 0.4 ); ?>; |
| 69 |
|
| 70 |
--borderless-text-color: <?php echo $borderless_text_color; ?>; |
| 71 |
} |
| 72 |
</style> |
| 73 |
<?php |
| 74 |
|
| 75 |
echo $before_widget; |
| 76 |
if ( ! empty( $title ) ) |
| 77 |
echo $before_title . $title . $after_title; ?> |
| 78 |
|
| 79 |
<!-- front display here --> |
| 80 |
<div class="borderless-contact-info <?php echo $alignment .' '. $content_color .' '. $icon_color .' '. $direction; ?>"> |
| 81 |
<ul> |
| 82 |
|
| 83 |
<?php if($hours) { ?> |
| 84 |
<li class="borderless-contact-info__item"> |
| 85 |
<svg class="borderless-icon-app__clock" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M256,8C119,8,8,119,8,256S119,504,256,504,504,393,504,256,393,8,256,8Zm92.49,313h0l-20,25a16,16,0,0,1-22.49,2.5h0l-67-49.72a40,40,0,0,1-15-31.23V112a16,16,0,0,1,16-16h32a16,16,0,0,1,16,16V256l58,42.5A16,16,0,0,1,348.49,321Z"></path></svg> |
| 86 |
<span><?php echo $hours; ?></span> |
| 87 |
</li> |
| 88 |
<?php } ?> |
| 89 |
|
| 90 |
<?php if($email) { ?> |
| 91 |
<li class="borderless-contact-info__item"> |
| 92 |
<svg class="borderless-icon-app__mail" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"></path></svg> |
| 93 |
<a href="mailto:<?php echo $email; ?>"><?php echo $email; ?></a> |
| 94 |
</li> |
| 95 |
<?php } ?> |
| 96 |
|
| 97 |
<?php if($fax) { ?> |
| 98 |
<li class="borderless-contact-info__item"> |
| 99 |
<svg class="borderless-icon-app__fax" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M448 192V77.25c0-8.49-3.37-16.62-9.37-22.63L393.37 9.37c-6-6-14.14-9.37-22.63-9.37H96C78.33 0 64 14.33 64 32v160c-35.35 0-64 28.65-64 64v112c0 8.84 7.16 16 16 16h48v96c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-96h48c8.84 0 16-7.16 16-16V256c0-35.35-28.65-64-64-64zm-64 256H128v-96h256v96zm0-224H128V64h192v48c0 8.84 7.16 16 16 16h48v96zm48 72c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"></path></svg> |
| 100 |
<span><?php echo $fax; ?></span> |
| 101 |
</li> |
| 102 |
<?php } ?> |
| 103 |
|
| 104 |
<?php if($location) { ?> |
| 105 |
<li class="borderless-contact-info__item"> |
| 106 |
<svg class="borderless-icon-app__location" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path fill="currentColor" d="M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"></path></svg> |
| 107 |
<span><?php echo $location; ?></span> |
| 108 |
</li> |
| 109 |
<?php } ?> |
| 110 |
|
| 111 |
<?php if($mobile) { ?> |
| 112 |
<li class="borderless-contact-info__item"> |
| 113 |
<svg class="borderless-icon-app__mobile" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="currentColor" d="M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"></path></svg> |
| 114 |
<a href="tel:<?php echo $mobile; ?>"><?php echo $mobile; ?></a> |
| 115 |
</li> |
| 116 |
<?php } ?> |
| 117 |
|
| 118 |
<?php if($name) { ?> |
| 119 |
<li class="borderless-contact-info__item"> |
| 120 |
<svg class="borderless-icon-app__user" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"></path></svg> |
| 121 |
<span><?php echo $name; ?></span> |
| 122 |
</li> |
| 123 |
<?php } ?> |
| 124 |
|
| 125 |
<?php if($phone) { ?> |
| 126 |
<li class="borderless-contact-info__item"> |
| 127 |
<svg class="borderless-icon-app__phone" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M493.4 24.6l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-36 76.7-98.9 140.5-177.2 177.2l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48C3.9 366.5-2 378.1.6 389.4l24 104C27.1 504.2 36.7 512 48 512c256.1 0 464-207.5 464-464 0-11.2-7.7-20.9-18.6-23.4z"></path></svg> |
| 128 |
<a href="tel:<?php echo $phone; ?>"><?php echo $phone; ?></a> |
| 129 |
</li> |
| 130 |
<?php } ?> |
| 131 |
|
| 132 |
<?php if($slogan) { ?> |
| 133 |
<li class="borderless-contact-info__item"> |
| 134 |
<span><?php echo $slogan; ?></span> |
| 135 |
</li> |
| 136 |
<?php } ?> |
| 137 |
|
| 138 |
</ul> |
| 139 |
</div> |
| 140 |
|
| 141 |
<?php echo $after_widget; |
| 142 |
} |
| 143 |
|
| 144 |
|
| 145 |
/** |
| 146 |
* Back-end widget form. |
| 147 |
* |
| 148 |
* @see WP_Widget::form() |
| 149 |
* |
| 150 |
* @param array $instance Previously saved values from database. |
| 151 |
*/ |
| 152 |
public function form( $instance ) { |
| 153 |
$alignment = isset( $instance['alignment'] ) ? $instance['alignment'] : ''; |
| 154 |
$hours = isset( $instance['hours'] ) ? $instance['hours'] : ''; |
| 155 |
$content_color = isset( $instance['content_color'] ) ? $instance['content_color'] : ''; |
| 156 |
$icon_color = isset( $instance['icon_color'] ) ? $instance['icon_color'] : ''; |
| 157 |
$direction = isset( $instance['direction'] ) ? $instance['direction'] : ''; |
| 158 |
$email = isset( $instance['email'] ) ? $instance['email'] : ''; |
| 159 |
$fax = isset( $instance['fax'] ) ? $instance['fax'] : ''; |
| 160 |
$location = isset( $instance['location'] ) ? $instance['location'] : ''; |
| 161 |
$mobile = isset( $instance['mobile'] ) ? $instance['mobile'] : ''; |
| 162 |
$name = isset( $instance['name'] ) ? $instance['name'] : ''; |
| 163 |
$phone = isset( $instance['phone'] ) ? $instance['phone'] : ''; |
| 164 |
$slogan = isset( $instance['slogan'] ) ? $instance['slogan'] : ''; |
| 165 |
$title = isset( $instance['title'] ) ? $instance['title'] : ''; |
| 166 |
|
| 167 |
?> |
| 168 |
|
| 169 |
|
| 170 |
<p> |
| 171 |
<label for="<?php echo $this->get_field_id('alignment'); ?>"><?php _e('Alignment:', 'borderless' ) ?></label> |
| 172 |
<select id="<?php echo $this->get_field_id('alignment'); ?>" name="<?php echo $this->get_field_name('alignment'); ?>" class="widefat"> |
| 173 |
<option value='borderless-contact-info--align-left'<?php selected( $alignment, 'borderless-contact-info--align-left'); ?>><?php _e( 'Left', 'borderless' ); ?></option> |
| 174 |
<option value='borderless-contact-info--align-center'<?php selected( $alignment, 'borderless-contact-info--align-center'); ?>><?php _e( 'Center', 'borderless' ); ?></option> |
| 175 |
<option value='borderless-contact-info--align-right'<?php selected( $alignment, 'borderless-contact-info--align-right'); ?>><?php _e( 'Right', 'borderless' ); ?></option> |
| 176 |
<option value='borderless-contact-info--align-space-between'<?php selected( $alignment, 'borderless-contact-info--align-space-between'); ?>><?php _e( 'Space Between', 'borderless' ); ?></option> |
| 177 |
<option value='borderless-contact-info--align-space-around'<?php selected( $alignment, 'borderless-contact-info--align-space-around'); ?>><?php _e( 'Space Around', 'borderless' ); ?></option> |
| 178 |
<option value='borderless-contact-info--align-space-evenly'<?php selected( $alignment, 'borderless-contact-info--align-space-evenly'); ?>><?php _e( 'Space Evenly', 'borderless' ); ?></option> |
| 179 |
</select> |
| 180 |
</p> |
| 181 |
<p> |
| 182 |
<label for="<?php echo $this->get_field_id('content_color'); ?>"><?php _e('Content Color:', 'borderless') ?></label> |
| 183 |
<select id="<?php echo $this->get_field_id('content_color'); ?>" name="<?php echo $this->get_field_name('content_color'); ?>" class="widefat"> |
| 184 |
<option value='borderless-contact-info--content-primary'<?php selected( $content_color, 'borderless-contact-info--content-primary'); ?>><?php _e( 'Primary Color', 'borderless' ); ?></option> |
| 185 |
<option value='borderless-contact-info--content-secondary'<?php selected( $content_color, 'borderless-contact-info--content-secondary'); ?>><?php _e( 'Secondary Color', 'borderless' ); ?></option> |
| 186 |
<option value='borderless-contact-info--content-tertiary'<?php selected( $content_color, 'borderless-contact-info--content-tertiary'); ?>><?php _e( 'Tertiary Color', 'borderless' ); ?></option> |
| 187 |
<option value='borderless-contact-info--content-light'<?php selected( $content_color, 'borderless-contact-info--content-light'); ?>><?php _e( 'Light Color', 'borderless' ); ?></option> |
| 188 |
<option value='borderless-contact-info--content-dark'<?php selected( $content_color, 'borderless-contact-info--content-dark'); ?>><?php _e( 'Dark Color', 'borderless' ); ?></option> |
| 189 |
</select> |
| 190 |
</p> |
| 191 |
<p> |
| 192 |
<label for="<?php echo $this->get_field_id('icon_color'); ?>"><?php _e('Icon Color:', 'borderless') ?></label> |
| 193 |
<select id="<?php echo $this->get_field_id('icon_color'); ?>" name="<?php echo $this->get_field_name('icon_color'); ?>" class="widefat"> |
| 194 |
<option value='borderless-contact-info--icon-primary'<?php selected( $icon_color, 'borderless-contact-info--icon-primary'); ?>><?php _e( 'Primary Color', 'borderless' ); ?></option> |
| 195 |
<option value='borderless-contact-info--icon-secondary'<?php selected( $icon_color, 'borderless-contact-info--icon-secondary'); ?>><?php _e( 'Secondary Color', 'borderless' ); ?></option> |
| 196 |
<option value='borderless-contact-info--icon-tertiary'<?php selected( $icon_color, 'borderless-contact-info--icon-tertiary'); ?>><?php _e( 'Tertiary Color', 'borderless' ); ?></option> |
| 197 |
<option value='borderless-contact-info--icon-light'<?php selected( $icon_color, 'borderless-contact-info--icon-light'); ?>><?php _e( 'Light Color', 'borderless' ); ?></option> |
| 198 |
<option value='borderless-contact-info--icon-dark'<?php selected( $icon_color, 'borderless-contact-info--icon-dark'); ?>><?php _e( 'Dark Color', 'borderless' ); ?></option> |
| 199 |
</select> |
| 200 |
</p> |
| 201 |
<p> |
| 202 |
<label for="<?php echo $this->get_field_id('direction'); ?>"><?php _e('Direction:', 'borderless') ?></label> |
| 203 |
<select id="<?php echo $this->get_field_id('direction'); ?>" name="<?php echo $this->get_field_name('direction'); ?>" class="widefat"> |
| 204 |
<option value='borderless-contact-info--direction-row'<?php selected( $direction, 'borderless-contact-info--direction-column-row'); ?>><?php _e( 'Row', 'borderless' ); ?></option> |
| 205 |
<option value='borderless-contact-info--direction-column'<?php selected( $direction, 'borderless-contact-info--direction-column'); ?>><?php _e( 'Column', 'borderless' ); ?></option> |
| 206 |
</select> |
| 207 |
</p> |
| 208 |
<p> |
| 209 |
<label for="<?php echo $this->get_field_id( 'hours' ); ?>"><?php _e( 'Business hours:', 'borderless' ); ?></label> |
| 210 |
<input class="widefat" id="<?php echo $this->get_field_id( 'hours' ); ?>" name="<?php echo $this->get_field_name( 'hours' ); ?>" type="text" value="<?php echo esc_attr( $hours ); ?>" /> |
| 211 |
</p> |
| 212 |
<p> |
| 213 |
<label for="<?php echo $this->get_field_id( 'email' ); ?>"><?php _e( 'Email:', 'borderless' ); ?></label> |
| 214 |
<input class="widefat" id="<?php echo $this->get_field_id( 'email' ); ?>" name="<?php echo $this->get_field_name( 'email' ); ?>" type="text" value="<?php echo esc_attr( $email ); ?>" /> |
| 215 |
</p> |
| 216 |
<p> |
| 217 |
<label for="<?php echo $this->get_field_id( 'fax' ); ?>"><?php _e( 'Fax:', 'borderless' ); ?></label> |
| 218 |
<input class="widefat" id="<?php echo $this->get_field_id( 'fax' ); ?>" name="<?php echo $this->get_field_name( 'fax' ); ?>" type="text" value="<?php echo esc_attr( $fax ); ?>" /> |
| 219 |
</p> |
| 220 |
<p> |
| 221 |
<label for="<?php echo $this->get_field_id( 'location' ); ?>"><?php _e( 'Location:', 'borderless' ); ?></label> |
| 222 |
<input class="widefat" id="<?php echo $this->get_field_id( 'location' ); ?>" name="<?php echo $this->get_field_name( 'location' ); ?>" type="text" value="<?php echo esc_attr( $location ); ?>" /> |
| 223 |
</p> |
| 224 |
<p> |
| 225 |
<label for="<?php echo $this->get_field_id( 'mobile' ); ?>"><?php _e( 'Mobile:', 'borderless' ); ?></label> |
| 226 |
<input class="widefat" id="<?php echo $this->get_field_id( 'mobile' ); ?>" name="<?php echo $this->get_field_name( 'mobile' ); ?>" type="text" value="<?php echo esc_attr( $mobile ); ?>" /> |
| 227 |
</p> |
| 228 |
<p> |
| 229 |
<label for="<?php echo $this->get_field_id( 'name' ); ?>"><?php _e( 'Name:', 'borderless' ); ?></label> |
| 230 |
<input class="widefat" id="<?php echo $this->get_field_id( 'name' ); ?>" name="<?php echo $this->get_field_name( 'name' ); ?>" type="text" value="<?php echo esc_attr( $name ); ?>" /> |
| 231 |
</p> |
| 232 |
<p> |
| 233 |
<label for="<?php echo $this->get_field_id( 'phone' ); ?>"><?php _e( 'Phone:', 'borderless' ); ?></label> |
| 234 |
<input class="widefat" id="<?php echo $this->get_field_id( 'phone' ); ?>" name="<?php echo $this->get_field_name( 'phone' ); ?>" type="text" value="<?php echo esc_attr( $phone ); ?>" /> |
| 235 |
</p> |
| 236 |
<p> |
| 237 |
<label for="<?php echo $this->get_field_id( 'slogan' ); ?>"><?php _e( 'Slogan:', 'borderless' ); ?></label> |
| 238 |
<input class="widefat" id="<?php echo $this->get_field_id( 'slogan' ); ?>" name="<?php echo $this->get_field_name( 'slogan' ); ?>" type="text" value="<?php echo esc_attr( $slogan ); ?>" /> |
| 239 |
</p> |
| 240 |
|
| 241 |
<?php } |
| 242 |
|
| 243 |
|
| 244 |
/** |
| 245 |
* Sanitize widget form values as they are saved. |
| 246 |
* |
| 247 |
* @see WP_Widget::update() |
| 248 |
* |
| 249 |
* @param array $new_instance Values just sent to be saved. |
| 250 |
* @param array $old_instance Previously saved values from database. |
| 251 |
* |
| 252 |
* @return array Updated safe values to be saved. |
| 253 |
*/ |
| 254 |
public function update( $new_instance, $old_instance ) { |
| 255 |
$instance = array(); |
| 256 |
$instance['alignment'] = ( !empty( $new_instance['alignment'] ) ) ? strip_tags( $new_instance['alignment'] ) : ''; |
| 257 |
$instance['content_color'] = ( !empty( $new_instance['content_color'] ) ) ? strip_tags( $new_instance['content_color'] ) : ''; |
| 258 |
$instance['icon_color'] = ( !empty( $new_instance['icon_color'] ) ) ? strip_tags( $new_instance['icon_color'] ) : ''; |
| 259 |
$instance['direction'] = ( !empty( $new_instance['direction'] ) ) ? strip_tags( $new_instance['direction'] ) : ''; |
| 260 |
$instance['email'] = ( !empty( $new_instance['email'] ) ) ? strip_tags( $new_instance['email'] ) : ''; |
| 261 |
$instance['fax'] = ( !empty( $new_instance['fax'] ) ) ? strip_tags( $new_instance['fax'] ) : ''; |
| 262 |
$instance['hours'] = ( !empty( $new_instance['hours'] ) ) ? strip_tags( $new_instance['hours'] ) : ''; |
| 263 |
$instance['location'] = ( !empty( $new_instance['location'] ) ) ? strip_tags( $new_instance['location'] ) : ''; |
| 264 |
$instance['mobile'] = ( !empty( $new_instance['mobile'] ) ) ? strip_tags( $new_instance['mobile'] ) : ''; |
| 265 |
$instance['name'] = ( !empty( $new_instance['name'] ) ) ? strip_tags( $new_instance['name'] ) : ''; |
| 266 |
$instance['phone'] = ( !empty( $new_instance['phone'] ) ) ? strip_tags( $new_instance['phone'] ) : ''; |
| 267 |
$instance['slogan'] = ( !empty( $new_instance['slogan'] ) ) ? strip_tags( $new_instance['slogan'] ) : ''; |
| 268 |
$instance['title'] = ( !empty( $new_instance['title'] ) ) ? strip_tags( $new_instance['title'] ) : ''; |
| 269 |
|
| 270 |
return $instance; |
| 271 |
} |
| 272 |
|
| 273 |
} // class Borderless_Widget_Contact_Information ends |
| 274 |
|
| 275 |
|
| 276 |
|
| 277 |
// register Borderless_Widget_Contact_Information widget |
| 278 |
function register_borderless_widget_contact_information() { |
| 279 |
register_widget( 'Borderless_Widget_Contact_Information' ); |
| 280 |
} |
| 281 |
add_action( 'widgets_init', 'register_borderless_widget_contact_information' ); |