????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.216.55 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/www.astacus.se/wp-content/plugins/Temp-Hold/ubermenu/pro/ |
Upload File : |
<?php
/** this allows shortcodes in widgets **/
add_filter('widget_text', 'do_shortcode');
/*
* Recent Posts Shortcodes - optional Image (via "Featured Image" functionality).
*/
function ubermenu_recent_posts($atts){
global $uberMenu;
extract(shortcode_atts(array(
'num' => 3,
'img' => 'on',
'img_size' => 'inherit',
'img_width' => 45,
'img_height'=> 45,
'excerpt' => 'off',
'category' => '',
'default_img' => false,
'offset' => 0,
), $atts));
$args = array(
'numberposts' => $num,
'offset' => $offset,
'suppress_filters' => false
);
if(!empty($category)){
if(is_numeric($category)){
$args['category'] = $category;
}
else $args['category_name'] = $category;
}
$posts = get_posts($args);
$class = 'ubermenu-postlist';
if($img == 'on') $class.= ' ubermenu-postlist-w-img';
$html= '<ul class="'.$class.'">';
foreach($posts as $post){
$ex = $post->post_excerpt;
if( $ex == '' && function_exists( 'wp_trim_words' ) ){ //wp_trim_words is a WP3.3 function
$ex = $post->post_content;
$ex = strip_shortcodes( $ex );
$ex = str_replace(']]>', ']]>', $ex);
$excerpt_length = apply_filters('excerpt_length', 55);
$excerpt_more = apply_filters('excerpt_more', ' ' . '[...]');
$ex = wp_trim_words( $ex, $excerpt_length, $excerpt_more );
}
//$ex = apply_filters('get_the_excerpt', $post->post_excerpt);
$post_url = get_permalink($post->ID);
$image = '';
$w = $img_width;
$h = $img_height;
$content_styles = array();
//if($img == 'on') $image = $uberMenu->getPostImage($post->ID, $w, $h, $default_img);
if( $img == 'on' ){
$img_data = ubermenu_get_image( false , $post->ID , true ,
array( 'img_w' => $w , 'img_h' => $h , 'img_size' => $img_size , 'default_img' => $default_img ) );
if( isset( $img_data['img'] ) ){
$image = $img_data['img'];
$content_styles['padding-left'] = ( $img_data['w'] + 10 ) .'px';
}
}
$_content_styles = '';
if( !empty( $content_styles ) ){
$_content_styles = 'style="';
foreach( $content_styles as $prop => $val ){
$_content_styles.= $prop.':'.$val.';';
}
$_content_styles.= '"';
}
$html.= '<li class="ubermenu-postlist-item">'. $image.
'<div class="ubermenu-postlist-title" '.$_content_styles.'><a href="'.$post_url.'">'.$post->post_title.'</a></div>';
if($excerpt == 'on')
$html.= '<div class="ubermenu-postlist-content" '.$_content_styles.'>'.$ex.'</div>';
$html.=
'</li>';
}
$html.= '</ul>';
return $html;
}
add_shortcode('wpmega-recent-posts', 'ubermenu_recent_posts'); //legacy
add_shortcode('ubermenu-recent-posts', 'ubermenu_recent_posts');
/*
* Column Group Shortcode - must wrap [wpmega-col] shortcode
*/
function ubermenu_colgroup($atts, $data){
$col_index = 0;
$pattern = get_shortcode_regex();
$pat = '/\[ubermenu\-col(?<atts>.*?)\]'.'(?<data>.*?)'.'\[\/ubermenu\-col\]/s'; //trailing /s makes dot (.) match newlines
preg_match_all($pat, $data, $matches, PREG_SET_ORDER);
if( empty( $matches ) ){
$pat = '/\[wpmega\-col(?<atts>.*?)\]'.'(?<data>.*?)'.'\[\/wpmega\-col\]/s'; //trailing /s makes dot (.) match newlines
preg_match_all($pat, $data, $matches, PREG_SET_ORDER);
}
$columns = array();
foreach($matches as $m){
//get the colspan
$colspan_pat = '/colspan="(?<colspan>[\d]*?)"/';
preg_match($colspan_pat, $m['atts'], $match);
$colspan = isset($match['colspan']) ? $match['colspan'] : 1;
$col_index += $colspan; //increment by colspan, so if we have 2 cols in a 2/3rds format it's a 3-col with a 2-span and a 1-span
}
$cols = $col_index;
$col_index = 0;
foreach($matches as $m){
//get the colspan
$colspan_pat = '/colspan="(?<colspan>[\d]*?)"/';
preg_match($colspan_pat, $m['atts'], $match);
$colspan = isset($match['colspan']) ? $match['colspan'] : 1;
$col_index += $colspan; //increment by colspan, so if we have 2 cols in a 2/3rds format it's a 3-col with a 2-span and a 1-span
$_cols = $cols;
if( $colspan > 1 ){
$fraction = ubermenu_simplify( $colspan , $cols );
$colspan = $fraction['num'];
$_cols = $fraction['den'];
}
$columns[] = '[ubermenu-col '.$m['atts'].' cols="'.$_cols.'" colspan="'.$colspan.'" col_index="'.$col_index.'" ]'.$m['data'].'[/ubermenu-col]';
}
$html ='<div class="ubermenu-colgroup ubermenu-colgroup-'.$col_index.'">';
foreach($columns as $c){
$html.= do_shortcode($c);
}
$html.= '</div>'; //<div class="clear"></div>
return $html;
}
add_shortcode( 'wpmega-colgroup', 'ubermenu_colgroup'); //legacy
add_shortcode( 'ubermenu-colgroup', 'ubermenu_colgroup');
/*
* Column Shortcode
*/
function ubermenu_col($atts, $data){
extract(shortcode_atts(array(
'cols' => 1,
'colspan' => 1,
'col_index' => 0,
), $atts));
$col_index;
$data = do_shortcode($data);
$data = ubermenu_trim_tag($data, array('br', 'br/', 'br /'));
//return '<div class="ss-col ss-col-'.$col_index.' ss-colspan-'.$colspan.'">'.$data.'</div>';
return '<div class="ubermenu-column ubermenu-column-'.$colspan .'-'.$cols.' ">'.$data.'</div>'; //ss-colspan-'.$colspan.'
}
add_shortcode( 'wpmega-col', 'ubermenu_col' ); //legacy
add_shortcode( 'ubermenu-col', 'ubermenu_col' );
function ubermenu_gcd($a,$b) {
$a = abs($a); $b = abs($b);
if( $a < $b) list($b,$a) = Array($a,$b);
if( $b == 0) return $a;
$r = $a % $b;
while($r > 0) {
$a = $b;
$b = $r;
$r = $a % $b;
}
return $b;
}
function ubermenu_simplify( $num , $den ) {
$g = ubermenu_gcd( $num , $den );
return array( 'num' => $num/$g , 'den' => $den/$g );
}
/* Tag Trimming Helper Function */
function ubermenu_trim_tag($s, $tags){
$s = trim($s);
foreach($tags as $tag){
$tag = '<'.$tag.'>';
if(strpos($s, $tag) === 0){
$s = substr($s, strlen($tag));
}
if(strpos($s, $tag) === strlen($s) - strlen($tag)){
$s = substr($s, 0, strlen($s) - strlen($tag));
}
}
return $s;
}