• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP spAddonAtts函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中spAddonAtts函数的典型用法代码示例。如果您正苦于以下问题:PHP spAddonAtts函数的具体用法?PHP spAddonAtts怎么用?PHP spAddonAtts使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了spAddonAtts函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: sp_text_block_addon

function sp_text_block_addon($atts)
{
    extract(spAddonAtts(array("title" => '', "heading_selector" => 'h3', "title_fontsize" => '', "title_text_color" => '', "title_margin_top" => '', "title_margin_bottom" => '', "text" => '', "alignment" => '', 'class' => ''), $atts));
    $output = '<div class="sppb-addon sppb-addon-text-block ' . $alignment . ' ' . $class . '">';
    if ($title) {
        $title_style = '';
        if ($title_margin_top) {
            $title_style .= 'margin-top:' . (int) $title_margin_top . 'px;';
        }
        if ($title_margin_bottom) {
            $title_style .= 'margin-bottom:' . (int) $title_margin_bottom . 'px;';
        }
        if ($title_text_color) {
            $title_style .= 'color:' . $title_text_color . ';';
        }
        if ($title_fontsize) {
            $title_style .= 'font-size:' . $title_fontsize . 'px;line-height:' . $title_fontsize . 'px;';
        }
        $output .= '<' . $heading_selector . ' class="sppb-addon-title" style="' . $title_style . '">' . $title . '</' . $heading_selector . '>';
    }
    $output .= '<div class="sppb-addon-content">';
    $output .= $text;
    $output .= '</div>';
    $output .= '</div>';
    return $output;
}
开发者ID:benji1979,项目名称:teszt1,代码行数:26,代码来源:site.php


示例2: sp_soundcloud_addon

function sp_soundcloud_addon($atts)
{
    extract(spAddonAtts(array("title" => '', "heading_selector" => 'h3', "title_fontsize" => '', "title_fontweight" => '', "title_text_color" => '', "title_margin_top" => '', "title_margin_bottom" => '', "embed" => '', "class" => ''), $atts));
    if ($embed) {
        $output = '<div class="sppb-addon sppb-addon-soundcloud ' . $class . '">';
        if ($title) {
            $title_style = '';
            if ($title_margin_top != '') {
                $title_style .= 'margin-top:' . (int) $title_margin_top . 'px;';
            }
            if ($title_margin_bottom != '') {
                $title_style .= 'margin-bottom:' . (int) $title_margin_bottom . 'px;';
            }
            if ($title_text_color) {
                $title_style .= 'color:' . $title_text_color . ';';
            }
            if ($title_fontsize) {
                $title_style .= 'font-size:' . $title_fontsize . 'px;line-height:' . $title_fontsize . 'px;';
            }
            if ($title_fontweight) {
                $title_style .= 'font-weight:' . $title_fontweight . ';';
            }
            $output .= '<' . $heading_selector . ' class="sppb-addon-title" style="' . $title_style . '">' . $title . '</' . $heading_selector . '>';
        }
        $output .= '<div class="sppb-video-block sppb-embed-responsive sppb-embed-responsive-16by9">';
        $output .= $embed;
        $output .= '</div>';
        $output .= '</div>';
        return $output;
    }
    return;
}
开发者ID:naka211,项目名称:myloyal,代码行数:32,代码来源:site.php


示例3: sp_audio_addon

function sp_audio_addon($atts, $content)
{
    extract(spAddonAtts(array("title" => '', "heading_selector" => 'h3', "title_fontsize" => '', "title_fontweight" => '', "title_text_color" => '', "title_margin_top" => '', "title_margin_bottom" => '', "mp3_link" => '', "ogg_link" => '', "autoplay" => '', "repeat" => '', "class" => ''), $atts));
    $output = '<div class="sppb-addon sppb-addon-audio ' . $class . '">';
    if ($title) {
        $title_style = '';
        if ($title_margin_top != '') {
            $title_style .= 'margin-top:' . (int) $title_margin_top . 'px;';
        }
        if ($title_margin_bottom != '') {
            $title_style .= 'margin-bottom:' . (int) $title_margin_bottom . 'px;';
        }
        if ($title_text_color) {
            $title_style .= 'color:' . $title_text_color . ';';
        }
        if ($title_fontsize) {
            $title_style .= 'font-size:' . $title_fontsize . 'px;line-height:' . $title_fontsize . 'px;';
        }
        if ($title_fontweight) {
            $title_style .= 'font-weight:' . $title_fontweight . ';';
        }
        $output .= '<' . $heading_selector . ' class="sppb-addon-title" style="' . $title_style . '">' . $title . '</' . $heading_selector . '>';
    }
    $output .= '<div class="sppb-addon-content">';
    $output .= '<audio controls ' . $autoplay . ' ' . $repeat . '>';
    $output .= '<source src="' . $mp3_link . '" type="audio/mp3">';
    $output .= '<source src="' . $ogg_link . '" type="audio/ogg">';
    $output .= 'Your browser does not support the audio element.';
    $output .= '</audio>';
    $output .= '</div>';
    $output .= '</div>';
    return $output;
}
开发者ID:naka211,项目名称:myloyal,代码行数:33,代码来源:site.php


示例4: sp_flickr_addon

function sp_flickr_addon($atts)
{
    extract(spAddonAtts(array('title' => '', "heading_selector" => 'h3', "title_fontsize" => '', "title_fontweight" => '', "title_text_color" => '', "title_margin_top" => '', "title_margin_bottom" => '', 'id' => '', 'count' => '', 'class' => ''), $atts));
    if ($id == '') {
        $id = '35591378@N03';
    }
    if ($id) {
        $output = '<div class="sppb-addon sppb-addon-flickr ' . $class . '">';
        if ($title) {
            $title_style = '';
            if ($title_margin_top != '') {
                $title_style .= 'margin-top:' . (int) $title_margin_top . 'px;';
            }
            if ($title_margin_bottom != '') {
                $title_style .= 'margin-bottom:' . (int) $title_margin_bottom . 'px;';
            }
            if ($title_text_color) {
                $title_style .= 'color:' . $title_text_color . ';';
            }
            if ($title_fontsize) {
                $title_style .= 'font-size:' . $title_fontsize . 'px;line-height:' . $title_fontsize . 'px;';
            }
            if ($title_fontweight) {
                $title_style .= 'font-weight:' . $title_fontweight . ';';
            }
            $output .= '<' . $heading_selector . ' class="sppb-addon-title" style="' . $title_style . '">' . $title . '</' . $heading_selector . '>';
        }
        $output .= '<div class="sppb-addon-content">';
        $output .= '<ul class="sppb-flickr-gallery" data-id="' . $id . '" data-count="' . $count . '"></ul>';
        $output .= '</div>';
        $output .= '</div>';
        return $output;
    }
    return;
}
开发者ID:naka211,项目名称:myloyal,代码行数:35,代码来源:site.php


示例5: sp_alert_addon

function sp_alert_addon($atts)
{
    extract(spAddonAtts(array("title" => '', "heading_selector" => 'h3', "title_fontsize" => '', "title_fontweight" => '', "title_text_color" => '', "title_margin_top" => '', "title_margin_bottom" => '', "close" => 'yes', "type" => 'info', "text" => '', "class" => ''), $atts));
    $output = '<div class="sppb-addon sppb-addon-alert ' . $class . '">';
    if ($title) {
        $title_style = '';
        if ($title_margin_top != '') {
            $title_style .= 'margin-top:' . (int) $title_margin_top . 'px;';
        }
        if ($title_margin_bottom != '') {
            $title_style .= 'margin-bottom:' . (int) $title_margin_bottom . 'px;';
        }
        if ($title_text_color) {
            $title_style .= 'color:' . $title_text_color . ';';
        }
        if ($title_fontsize) {
            $title_style .= 'font-size:' . $title_fontsize . 'px;line-height:' . $title_fontsize . 'px;';
        }
        if ($title_fontweight) {
            $title_style .= 'font-weight:' . $title_fontweight . ';';
        }
        $output .= '<' . $heading_selector . ' class="sppb-addon-title" style="' . $title_style . '">' . $title . '</' . $heading_selector . '>';
    }
    $output .= '<div class="sppb-addon-content">';
    $output .= '<div class="sppb-alert sppb-alert-' . $type . ' sppb-fade in" role="alert">';
    if ($close == 'yes') {
        $output .= '<button type="button" class="close" data-dismiss="sppb-alert"><span aria-hidden="true">&times;</span></button>';
    }
    $output .= $text;
    $output .= '</div>';
    $output .= '</div>';
    $output .= '</div>';
    return $output;
}
开发者ID:naka211,项目名称:myloyal,代码行数:34,代码来源:site.php


示例6: sp_divider_addon

function sp_divider_addon($atts, $content)
{
    extract(spAddonAtts(array('divider_type' => '', 'margin_top' => '', 'margin_bottom' => '', 'border_color' => '', 'border_style' => '', 'border_width' => '', 'divider_image' => '', 'background_repeat' => '', 'background_position' => '', 'divider_height' => '', 'class' => ''), $atts));
    $style = '';
    $style1 = '';
    $style2 = '';
    if ($margin_top) {
        $style .= 'margin-top:' . (int) $margin_top . 'px;';
    }
    if ($margin_bottom) {
        $style .= 'margin-bottom:' . (int) $margin_bottom . 'px;';
    }
    if ($border_color) {
        $style1 .= 'border-bottom-color:' . $border_color . ';';
    }
    if ($border_style) {
        $style1 .= 'border-bottom-style:' . $border_style . ';';
    }
    if ($border_width) {
        $style1 .= 'border-bottom-width:' . (int) $border_width . 'px;';
    }
    if ($divider_height) {
        $style2 .= 'height:' . (int) $divider_height . 'px;';
    }
    if ($divider_image) {
        $style2 .= 'background-image: url(' . JURI::base(true) . '/' . $divider_image . ');background-repeat:' . $background_repeat . ';background-position:50% 50%;';
    }
    if ($divider_type == 'image') {
        $output = '<div class="sppb-divider sppb-divider-' . $divider_type . '" style="' . $style . ' ' . $style2 . '"></div>';
    } else {
        $output = '<div class="sppb-divider sppb-divider-' . $divider_type . '" style="' . $style . ' ' . $style1 . '"></div>';
    }
    return $output;
}
开发者ID:naka211,项目名称:myloyal,代码行数:34,代码来源:site.php


示例7: sp_carousel_item_addon

function sp_carousel_item_addon($atts)
{
    extract(spAddonAtts(array("title" => '', "bg" => '', 'content' => '', "button_text" => '', "button_url" => '', "button_size" => '', "button_type" => '', "button_icon" => ''), $atts));
    if ($button_icon) {
        $button_text = '<i class="fa ' . $button_icon . '"></i> ' . $button_text;
    }
    $has_bg = '';
    if ($bg) {
        $has_bg = ' sppb-item-has-bg';
    }
    $output = '<div class="sppb-item' . $has_bg . '">';
    if ($bg) {
        $output .= '<img src="' . $bg . '" alt="' . $title . '">';
    }
    $output .= '<div class="sppb-carousel-item-inner">';
    $output .= '<div class="sppb-carousel-caption">';
    $output .= '<div class="sppb-carousel-pro-text">';
    if ($title || $content) {
        if ($title != '') {
            $output .= '<h2>' . $title . '</h2>';
        }
        $output .= '<p>' . $content . '</p>';
        if ($button_text && $button_url) {
            $output .= '<a href="' . $button_url . '" class="sppb-btn sppb-btn-' . $button_type . ' sppb-btn-' . $button_size . '" role="button">' . $button_text . '</a>';
        }
    }
    $output .= '</div>';
    $output .= '</div>';
    $output .= '</div>';
    $output .= '</div>';
    return $output;
}
开发者ID:naka211,项目名称:myloyal,代码行数:32,代码来源:site.php


示例8: sp_dropcap_addon

function sp_dropcap_addon($atts)
{
    extract(spAddonAtts(array("title" => '', "heading_selector" => 'h3', "title_fontsize" => '', "title_fontweight" => '', "title_text_color" => '', "title_margin_top" => '', "title_margin_bottom" => '', "text" => '', 'class' => ''), $atts));
    if ($text) {
        $output = '<div class="sppb-addon sppb-addon-dropcap ' . $class . '">';
        if ($title) {
            $title_style = '';
            if ($title_margin_top != '') {
                $title_style .= 'margin-top:' . (int) $title_margin_top . 'px;';
            }
            if ($title_margin_bottom != '') {
                $title_style .= 'margin-bottom:' . (int) $title_margin_bottom . 'px;';
            }
            if ($title_text_color) {
                $title_style .= 'color:' . $title_text_color . ';';
            }
            if ($title_fontsize) {
                $title_style .= 'font-size:' . $title_fontsize . 'px;line-height:' . $title_fontsize . 'px;';
            }
            if ($title_fontweight) {
                $title_style .= 'font-weight:' . $title_fontweight . ';';
            }
            $output .= '<' . $heading_selector . ' class="sppb-addon-title" style="' . $title_style . '">' . $title . '</' . $heading_selector . '>';
        }
        $output .= '<div class="sppb-addon-content">';
        $output .= '<p class="sppb-dropcap">' . $text . '</p>';
        $output .= '</div>';
        $output .= '</div>';
        return $output;
    }
    return;
}
开发者ID:naka211,项目名称:myloyal,代码行数:32,代码来源:site.php


示例9: sp_gplus_button_addon

function sp_gplus_button_addon($atts)
{
    extract(spAddonAtts(array('size' => '', 'annotation' => '', 'width' => ''), $atts));
    $doc = JFactory::getDocument();
    $doc->addScript('https://apis.google.com/js/plusone.js');
    $output = '<div class="g-plusone" data-href="' . JURI::current() . '" data-size="' . $size . '" data-annotation="' . $annotation . '"></div>';
    return $output;
}
开发者ID:naka211,项目名称:myloyal,代码行数:8,代码来源:site.php


示例10: sp_tab_item_addon

function sp_tab_item_addon($atts)
{
    global $sppbTabArray;
    extract(spAddonAtts(array("title" => '', "icon" => '', 'content' => ''), $atts));
    if ($icon != '') {
        $icon = '<i class="fa ' . $icon . '"></i> ';
    }
    $sppbTabArray[] = array('title' => $title, 'icon' => $icon, 'content' => $content);
}
开发者ID:naka211,项目名称:myloyal,代码行数:9,代码来源:site.php


示例11: sp_button_group_item_addon

function sp_button_group_item_addon($atts)
{
    global $sppbButtonGroup_margin;
    extract(spAddonAtts(array("title" => '', "url" => '', "size" => '', "type" => '', "icon" => '', "target" => '', "class" => ''), $atts));
    if ($icon != '') {
        $title = '<i class="fa ' . $icon . '"></i> ' . $title;
    }
    $output = '<a target="' . $target . '" href="' . $url . '" class="sppb-btn sppb-btn-' . $type . ' sppb-btn-' . $size . $class . '" style="margin:' . (int) $sppbButtonGroup_margin . 'px;" role="button">' . $title . '</a>';
    return $output;
}
开发者ID:naka211,项目名称:myloyal,代码行数:10,代码来源:site.php


示例12: sp_progress_bar_addon

function sp_progress_bar_addon($atts, $content)
{
    extract(spAddonAtts(array("type" => '', "progress" => '', "text" => '', "stripped" => '', "active" => '', "class" => ''), $atts));
    $output = '<div class="sppb-progress ' . $class . '">';
    $output .= '<div class="sppb-progress-bar ' . $type . ' ' . $stripped . ' ' . $active . '" role="progressbar" aria-valuenow="' . (int) $progress . '" aria-valuemin="0" aria-valuemax="100" data-width="' . (int) $progress . '%">';
    if ($text) {
        $output .= $text;
    }
    $output .= '</div>';
    $output .= '</div>';
    return $output;
}
开发者ID:naka211,项目名称:myloyal,代码行数:12,代码来源:site.php


示例13: sp_ajax_contact_addon

function sp_ajax_contact_addon($atts)
{
    extract(spAddonAtts(array("title" => '', "heading_selector" => 'h3', "title_fontsize" => '', "title_fontweight" => '', "title_text_color" => '', "title_margin_top" => '', "title_margin_bottom" => '', "recipient_email" => '[email protected]', "formcaptcha" => '', "captcha_question" => '', "captcha_answer" => '', "class" => ''), $atts));
    $output = '<div class="sppb-addon sppb-addon-ajax-contact ' . $class . '">';
    if ($title) {
        $title_style = '';
        if ($title_margin_top != '') {
            $title_style .= 'margin-top:' . (int) $title_margin_top . 'px;';
        }
        if ($title_margin_bottom != '') {
            $title_style .= 'margin-bottom:' . (int) $title_margin_bottom . 'px;';
        }
        if ($title_text_color) {
            $title_style .= 'color:' . $title_text_color . ';';
        }
        if ($title_fontsize) {
            $title_style .= 'font-size:' . $title_fontsize . 'px;line-height:' . $title_fontsize . 'px;';
        }
        if ($title_fontweight) {
            $title_style .= 'font-weight:' . $title_fontweight . ';';
        }
        $output .= '<' . $heading_selector . ' class="sppb-addon-title" style="' . $title_style . '">' . $title . '</' . $heading_selector . '>';
    }
    $output .= '<div class="sppb-addon-content">';
    $output .= '<form class="sppb-ajaxt-contact-form">';
    $output .= '<div class="sppb-form-group col-md-4 contact-left">';
    $output .= '<input type="text" name="name" class="sppb-form-control" placeholder="' . JText::_('Navn') . '" required="required">';
    $output .= '</div>';
    $output .= '<div class="sppb-form-group col-md-4">';
    $output .= '<input type="email" name="email" class="sppb-form-control" placeholder="' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_EMAIL') . '" required="required">';
    $output .= '</div>';
    $output .= '<div class="sppb-form-group col-md-4 contact-right">';
    $output .= '<input type="text" name="subject" class="sppb-form-control" placeholder="' . JText::_('Emne') . '" required="required">';
    $output .= '</div>';
    if ($formcaptcha) {
        $output .= '<div class="sppb-form-group">';
        $output .= '<input type="text" name="captcha_question" class="sppb-form-control" placeholder="' . $captcha_question . '" required="required">';
        $output .= '</div>';
    }
    $output .= '<div class="sppb-form-group">';
    $output .= '<textarea type="text" name="message" rows="5" class="sppb-form-control" placeholder="' . JText::_('Besked') . '" required="required"></textarea>';
    $output .= '</div>';
    $output .= '<input type="hidden" name="recipient" value="' . base64_encode($recipient_email) . '">';
    if ($formcaptcha) {
        $output .= '<input type="hidden" name="captcha_answer" value="' . md5($captcha_answer) . '">';
    }
    $output .= '<div class="contact-form-button"> <button type="submit" class="sppb-btn sppb-btn-success  button-style-1"><i class="fa"></i> ' . JText::_('Send besked') . '</button> </div>';
    $output .= '</form>';
    $output .= '<div style="display:none;margin-top:10px;" class="sppb-ajax-contact-status"></div>';
    $output .= '</div>';
    $output .= '</div>';
    return $output;
}
开发者ID:naka211,项目名称:myloyal,代码行数:53,代码来源:site.php


示例14: sp_image_content_addon

function sp_image_content_addon($atts)
{
    extract(spAddonAtts(array("image" => '', "image_width" => '', "image_alignment" => '', "title" => '', "heading_selector" => 'h3', "title_fontsize" => '', "title_fontweight" => '', "title_text_color" => '', "title_margin_top" => '', "title_margin_bottom" => '', "text" => '', "button_text" => '', "button_url" => '', "button_size" => '', "button_type" => '', "button_icon" => '', "button_block" => '', "button_target" => '', "class" => ''), $atts));
    if ($image_alignment == 'left') {
        $eontent_class = ' sppb-col-sm-offset-6';
    } else {
        $eontent_class = '';
    }
    if ($image && $title) {
        $output = '<div class="sppb-addon sppb-addon-image-content aligment-' . $image_alignment . ' clearfix ' . $class . '">';
        //Image
        $output .= '<div style="background-image: url(' . JURI::base(true) . '/' . $image . ');" class="sppb-image-holder">';
        $output .= '</div>';
        //Content
        $output .= '<div class="sppb-container">';
        $output .= '<div class="sppb-row">';
        $output .= '<div class="sppb-col-sm-6' . $eontent_class . '">';
        $output .= '<div class="sppb-content-holder">';
        $title_style = '';
        if ($title_margin_top != '') {
            $title_style .= 'margin-top:' . (int) $title_margin_top . 'px;';
        }
        if ($title_margin_bottom != '') {
            $title_style .= 'margin-bottom:' . (int) $title_margin_bottom . 'px;';
        }
        if ($title_text_color) {
            $title_style .= 'color:' . $title_text_color . ';';
        }
        if ($title_fontsize) {
            $title_style .= 'font-size:' . $title_fontsize . 'px;line-height:' . $title_fontsize . 'px;';
        }
        if ($title_fontweight) {
            $title_style .= 'font-weight:' . $title_fontweight . ';';
        }
        $output .= '<' . $heading_selector . ' class="sppb-image-content-title" style="' . $title_style . '">' . $title . '</' . $heading_selector . '>';
        if ($text) {
            $output .= '<p class="sppb-image-content-text">' . $text . '</p>';
        }
        if ($button_icon) {
            $button_text = '<i class="fa ' . $button_icon . '"></i> ' . $button_text;
        }
        if ($button_text) {
            $output .= '<a target="' . $button_target . '" href="' . $button_url . '" class="sppb-btn sppb-btn-' . $button_type . ' sppb-btn-' . $button_size . ' ' . $button_block . '" role="button">' . $button_text . '</a>';
        }
        $output .= '</div>';
        $output .= '</div>';
        $output .= '</div>';
        $output .= '</div>';
        $output .= '</div>';
        return $output;
    }
    return;
}
开发者ID:naka211,项目名称:myloyal,代码行数:53,代码来源:site.php


示例15: sp_button_addon

function sp_button_addon($atts, $content)
{
    extract(spAddonAtts(array("text" => '', "url" => '', "size" => '', "type" => '', "icon" => '', "target" => '', "margin" => '', "block" => '', "class" => ''), $atts));
    if ($icon != '') {
        $text = '<i class="fa ' . $icon . '"></i> ' . $text;
    }
    $style = '';
    if ($margin) {
        $style = ' style="margin:' . $margin . ';"';
    }
    $output = '<a target="' . $target . '" href="' . $url . '" class="sppb-btn sppb-btn-' . $type . ' sppb-btn-' . $size . ' ' . $block . ' ' . $class . '" ' . $style . ' role="button">' . $text . '</a>';
    return $output;
}
开发者ID:lyrasoft,项目名称:lyrasoft.github.io,代码行数:13,代码来源:site.php


示例16: sp_video_addon

function sp_video_addon($atts)
{
    extract(spAddonAtts(array("title" => '', "heading_selector" => 'h3', "title_fontsize" => '', "title_fontweight" => '', "title_text_color" => '', "title_margin_top" => '', "title_margin_bottom" => '', "url" => '', "class" => ''), $atts));
    if ($url) {
        $video = parse_url($url);
        switch ($video['host']) {
            case 'youtu.be':
                $id = trim($video['path'], '/');
                $src = '//www.youtube.com/embed/' . $id;
                break;
            case 'www.youtube.com':
            case 'youtube.com':
                parse_str($video['query'], $query);
                $id = $query['v'];
                $src = '//www.youtube.com/embed/' . $id;
                break;
            case 'vimeo.com':
            case 'www.vimeo.com':
                $id = trim($video['path'], '/');
                $src = "//player.vimeo.com/video/{$id}";
        }
        $output = '<div class="sppb-addon sppb-addon-video ' . $class . '">';
        if ($title) {
            $title_style = '';
            if ($title_margin_top) {
                $title_style .= 'margin-top:' . (int) $title_margin_top . 'px;';
            }
            if ($title_margin_bottom) {
                $title_style .= 'margin-bottom:' . (int) $title_margin_bottom . 'px;';
            }
            if ($title_text_color) {
                $title_style .= 'color:' . $title_text_color . ';';
            }
            if ($title_fontsize) {
                $title_style .= 'font-size:' . $title_fontsize . 'px;line-height:' . $title_fontsize . 'px;';
            }
            if ($title_fontweight) {
                $title_style .= 'font-weight:' . $title_fontweight . ';';
            }
            $output .= '<' . $heading_selector . ' class="sppb-addon-title" style="' . $title_style . '">' . $title . '</' . $heading_selector . '>';
        }
        $output .= '<div class="sppb-video-block sppb-embed-responsive sppb-embed-responsive-16by9">';
        $output .= '<iframe class="sppb-embed-responsive-item" src="' . $src . '" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>';
        $output .= '</div>';
        $output .= '</div>';
        return $output;
    }
    return;
}
开发者ID:spikart,项目名称:spikart.com.ua,代码行数:49,代码来源:site.php


示例17: sp_empty_space_addon

function sp_empty_space_addon($atts)
{
    extract(spAddonAtts(array('gap' => '20', 'hidden_md' => '', 'hidden_sm' => '', 'hidden_xs' => '', 'class' => ''), $atts));
    //Responsive utilities
    if ($hidden_md) {
        $class .= $class . ' sppb-hidden-md sppb-hidden-lg';
    }
    if ($hidden_sm) {
        $class .= $class . ' sppb-hidden-sm';
    }
    if ($hidden_xs) {
        $class .= $class . ' sppb-hidden-xs';
    }
    return '<div class="sppb-empty-space ' . $class . ' clearfix" style="margin-bottom:' . (int) $gap . 'px;"></div>';
}
开发者ID:lyrasoft,项目名称:lyrasoft.github.io,代码行数:15,代码来源:site.php


示例18: sp_testimonialpro_item_addon

function sp_testimonialpro_item_addon($atts)
{
    extract(spAddonAtts(array("title" => '', "avatar" => '', "avatar_style" => '', 'message' => '', "url" => ''), $atts));
    $output = '<div class="sppb-item">';
    $title = '<strong class="pro-client-name">' . $title . '</strong>';
    if ($url) {
        $title .= ' - <span class="pro-client-url">' . $url . '</span>';
    }
    if ($avatar) {
        $output .= '<img class="sppb-img-responsive sppb-avatar ' . $avatar_style . '" src="' . $avatar . '" alt="">';
    }
    $output .= '<div class="sppb-testimonial-message">' . $message . '</div>';
    if ($title) {
        $output .= '<div class="sppb-testimonial-client">' . $title . '</div>';
    }
    $output .= '</div>';
    return $output;
}
开发者ID:lyrasoft,项目名称:lyrasoft.github.io,代码行数:18,代码来源:site.php


示例19: sp_gallery_item_addon

function sp_gallery_item_addon($atts)
{
    global $sppbGalleryParam;
    extract(spAddonAtts(array("title" => '', "thumb" => '', "full" => ''), $atts));
    $output = '';
    if ($thumb) {
        $output .= '<li>';
        if ($full) {
            $output .= '<a href="' . $full . '" rel="prettyPhoto[gallery1]">';
        }
        $output .= '<img class="sppb-img-responsive" src="' . $thumb . '" width="' . $sppbGalleryParam['width'] . '" height="' . $sppbGalleryParam['height'] . '" alt="' . $title . '">';
        if ($full) {
            $output .= '</a>';
        }
        $output .= '</li>';
    }
    return $output;
}
开发者ID:naka211,项目名称:myloyal,代码行数:18,代码来源:site.php


示例20: sp_clients_item_addon

function sp_clients_item_addon($atts)
{
    global $sppbClientsParam;
    extract(spAddonAtts(array("image" => '', "url" => '', "title" => ''), $atts));
    $output = '';
    if ($image) {
        $output .= '<div class="' . $sppbClientsParam['col'] . '">';
        if ($url) {
            $output .= '<a target="_blank" href="' . $url . '">';
        }
        $output .= '<img class="sppb-img-responsive" src="' . $image . '" alt="' . $title . '">';
        if ($url) {
            $output .= '</a>';
        }
        $output .= '</div>';
    }
    return $output;
}
开发者ID:naka211,项目名称:myloyal,代码行数:18,代码来源:site.php



注:本文中的spAddonAtts函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP spClass函数代码示例发布时间:2022-05-23
下一篇:
PHP sow_esc_url函数代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap