2016-01-20 16:02:53 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Storefront Class
|
|
|
|
*
|
|
|
|
* @author WooThemes
|
|
|
|
* @since 2.0.0
|
2016-02-19 16:57:56 +00:00
|
|
|
* @package storefront
|
2016-01-20 16:02:53 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! class_exists( 'Storefront' ) ) :
|
|
|
|
|
|
|
|
/**
|
2016-02-19 16:57:56 +00:00
|
|
|
* The main Storefront class
|
2016-01-20 16:02:53 +00:00
|
|
|
*/
|
2016-02-19 16:57:56 +00:00
|
|
|
class Storefront {
|
2016-01-20 16:02:53 +00:00
|
|
|
|
2016-06-01 12:26:01 +01:00
|
|
|
private static $structured_data;
|
|
|
|
|
2016-01-20 16:02:53 +00:00
|
|
|
/**
|
2016-02-19 16:57:56 +00:00
|
|
|
* Setup class.
|
|
|
|
*
|
|
|
|
* @since 1.0
|
2016-01-20 16:02:53 +00:00
|
|
|
*/
|
2016-02-19 16:57:56 +00:00
|
|
|
public function __construct() {
|
2016-07-27 19:40:14 +02:00
|
|
|
add_action( 'after_setup_theme', array( $this, 'setup' ) );
|
|
|
|
add_action( 'widgets_init', array( $this, 'widgets_init' ) );
|
|
|
|
add_action( 'wp_enqueue_scripts', array( $this, 'scripts' ), 10 );
|
|
|
|
add_action( 'wp_enqueue_scripts', array( $this, 'child_scripts' ), 30 ); // After WooCommerce.
|
|
|
|
add_filter( 'body_class', array( $this, 'body_classes' ) );
|
|
|
|
add_filter( 'wp_page_menu_args', array( $this, 'page_menu_args' ) );
|
2016-08-01 11:17:10 +01:00
|
|
|
add_filter( 'navigation_markup_template', array( $this, 'navigation_markup_template' ) );
|
2016-07-27 19:40:14 +02:00
|
|
|
add_action( 'enqueue_embed_scripts', array( $this, 'print_embed_styles' ) );
|
|
|
|
add_action( 'wp_footer', array( $this, 'get_structured_data' ) );
|
2016-06-01 12:26:01 +01:00
|
|
|
}
|
2016-01-20 16:02:53 +00:00
|
|
|
|
2016-02-19 16:57:56 +00:00
|
|
|
/**
|
|
|
|
* Sets up theme defaults and registers support for various WordPress features.
|
2016-01-20 16:02:53 +00:00
|
|
|
*
|
2016-02-19 16:57:56 +00:00
|
|
|
* Note that this function is hooked into the after_setup_theme hook, which
|
|
|
|
* runs before the init hook. The init hook is too late for some features, such
|
|
|
|
* as indicating support for post thumbnails.
|
2016-01-20 16:02:53 +00:00
|
|
|
*/
|
2016-02-19 16:57:56 +00:00
|
|
|
public function setup() {
|
|
|
|
/*
|
|
|
|
* Load Localisation files.
|
|
|
|
*
|
|
|
|
* Note: the first-loaded translation file overrides any following ones if the same translation is present.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Loads wp-content/languages/themes/storefront-it_IT.mo.
|
|
|
|
load_theme_textdomain( 'storefront', trailingslashit( WP_LANG_DIR ) . 'themes/' );
|
|
|
|
|
|
|
|
// Loads wp-content/themes/child-theme-name/languages/it_IT.mo.
|
|
|
|
load_theme_textdomain( 'storefront', get_stylesheet_directory() . '/languages' );
|
|
|
|
|
|
|
|
// Loads wp-content/themes/storefront/languages/it_IT.mo.
|
|
|
|
load_theme_textdomain( 'storefront', get_template_directory() . '/languages' );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add default posts and comments RSS feed links to head.
|
|
|
|
*/
|
|
|
|
add_theme_support( 'automatic-feed-links' );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Enable support for Post Thumbnails on posts and pages.
|
|
|
|
*
|
|
|
|
* @link http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails
|
|
|
|
*/
|
|
|
|
add_theme_support( 'post-thumbnails' );
|
|
|
|
|
2016-03-18 14:34:16 +00:00
|
|
|
/**
|
|
|
|
* Enable support for site logo
|
|
|
|
*/
|
2016-05-03 19:02:20 +01:00
|
|
|
add_theme_support( 'custom-logo', array(
|
|
|
|
'height' => 110,
|
|
|
|
'width' => 470,
|
|
|
|
'flex-width' => true,
|
|
|
|
) );
|
2016-03-18 14:34:16 +00:00
|
|
|
|
2016-02-19 16:57:56 +00:00
|
|
|
// This theme uses wp_nav_menu() in two locations.
|
|
|
|
register_nav_menus( array(
|
2016-08-01 11:17:10 +01:00
|
|
|
'primary' => __( 'Primary Menu', 'storefront' ),
|
|
|
|
'secondary' => __( 'Secondary Menu', 'storefront' ),
|
|
|
|
'handheld' => __( 'Handheld Menu', 'storefront' ),
|
2016-02-19 16:57:56 +00:00
|
|
|
) );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Switch default core markup for search form, comment form, comments, galleries, captions and widgets
|
|
|
|
* to output valid HTML5.
|
|
|
|
*/
|
|
|
|
add_theme_support( 'html5', array(
|
|
|
|
'search-form',
|
|
|
|
'comment-form',
|
|
|
|
'comment-list',
|
|
|
|
'gallery',
|
|
|
|
'caption',
|
|
|
|
'widgets',
|
|
|
|
) );
|
|
|
|
|
|
|
|
// Setup the WordPress core custom background feature.
|
|
|
|
add_theme_support( 'custom-background', apply_filters( 'storefront_custom_background_args', array(
|
2016-04-15 10:10:20 +01:00
|
|
|
'default-color' => apply_filters( 'storefront_default_background_color', 'ffffff' ),
|
2016-02-19 16:57:56 +00:00
|
|
|
'default-image' => '',
|
|
|
|
) ) );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add support for the Site Logo plugin and the site logo functionality in JetPack
|
|
|
|
* https://github.com/automattic/site-logo
|
|
|
|
* http://jetpack.me/
|
|
|
|
*/
|
|
|
|
add_theme_support( 'site-logo', array( 'size' => 'full' ) );
|
|
|
|
|
|
|
|
// Declare WooCommerce support.
|
|
|
|
add_theme_support( 'woocommerce' );
|
|
|
|
|
|
|
|
// Declare support for title theme feature.
|
|
|
|
add_theme_support( 'title-tag' );
|
2016-08-03 10:03:48 +01:00
|
|
|
|
|
|
|
// Declare support for selective refreshing of widgets.
|
|
|
|
add_theme_support( 'customize-selective-refresh-widgets' );
|
2016-02-19 16:57:56 +00:00
|
|
|
}
|
2016-01-20 16:02:53 +00:00
|
|
|
|
|
|
|
/**
|
2016-02-19 16:57:56 +00:00
|
|
|
* Register widget area.
|
2016-01-20 16:02:53 +00:00
|
|
|
*
|
2016-02-19 16:57:56 +00:00
|
|
|
* @link http://codex.wordpress.org/Function_Reference/register_sidebar
|
2016-01-20 16:02:53 +00:00
|
|
|
*/
|
2016-08-01 11:17:10 +01:00
|
|
|
public function widgets_init() {
|
|
|
|
$sidebar_args['sidebar'] = array(
|
|
|
|
'name' => __( 'Sidebar', 'storefront' ),
|
|
|
|
'id' => 'sidebar-1',
|
|
|
|
'description' => ''
|
|
|
|
);
|
2016-10-12 23:25:51 +02:00
|
|
|
|
|
|
|
$sidebar_args['header'] = array(
|
|
|
|
'name' => __( 'Below Header', 'storefront' ),
|
|
|
|
'id' => 'header-1',
|
|
|
|
'description' => __( 'Widgets added to this region will appear beneath the header and above the main content.', 'storefront' ),
|
|
|
|
);
|
2016-08-01 11:17:10 +01:00
|
|
|
|
2016-10-08 02:23:22 +02:00
|
|
|
|
2016-10-12 23:25:51 +02:00
|
|
|
$footer_widget_rows = intval( apply_filters( 'storefront_footer_widget_rows', 2 ) );
|
|
|
|
$footer_widget_regions = intval( apply_filters( 'storefront_footer_widget_regions', 4 ) );
|
2016-08-01 11:17:10 +01:00
|
|
|
|
2016-10-12 23:25:51 +02:00
|
|
|
for ( $row = 1; $row <= $footer_widget_rows; $row++ ) {
|
|
|
|
for ( $region = 1; $region <= $footer_widget_regions; $region++ ) {
|
|
|
|
$footer = sprintf( 'footer_%1$d_%2$d', $row, $region );
|
2016-08-01 11:17:10 +01:00
|
|
|
|
2016-10-12 23:25:51 +02:00
|
|
|
$sidebar_args[ $footer ] = array(
|
|
|
|
'name' => sprintf( __( 'Footer Row%1$d Region%2$d', 'storefront' ), $row, $region ),
|
|
|
|
'id' => sprintf( 'footer-%1$d-%2$d', $row, $region ),
|
|
|
|
'description' => sprintf( __( 'Widgetized Footer Row %1$d - Region %2$d.', 'storefront' ), $row, $region )
|
|
|
|
);
|
|
|
|
}
|
2016-08-01 11:17:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
foreach ( $sidebar_args as $sidebar => $args ) {
|
|
|
|
$widget_tags = array(
|
|
|
|
'before_widget' => '<div id="%1$s" class="widget %2$s">',
|
|
|
|
'after_widget' => '</div>',
|
|
|
|
'before_title' => '<span class="gamma widget-title">',
|
|
|
|
'after_title' => '</span>'
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Dynamically generated filter hooks. Allow changing widget wrapper and title tags. See the list below.
|
|
|
|
*
|
|
|
|
* 'storefront_header_widget_tags'
|
|
|
|
* 'storefront_sidebar_widget_tags'
|
|
|
|
*
|
2016-10-12 23:25:51 +02:00
|
|
|
* 'storefront_footer_1_1_widget_tags'
|
|
|
|
* 'storefront_footer_1_2_widget_tags'
|
|
|
|
* 'storefront_footer_1_3_widget_tags'
|
|
|
|
* 'storefront_footer_1_4_widget_tags'
|
|
|
|
*
|
|
|
|
* 'storefront_footer_2_1_widget_tags'
|
|
|
|
* 'storefront_footer_2_2_widget_tags'
|
|
|
|
* 'storefront_footer_2_3_widget_tags'
|
|
|
|
* 'storefront_footer_2_4_widget_tags'
|
|
|
|
*
|
|
|
|
* And so on...
|
2016-08-01 11:17:10 +01:00
|
|
|
*/
|
|
|
|
$filter_hook = sprintf( 'storefront_%s_widget_tags', $sidebar );
|
|
|
|
$widget_tags = apply_filters( $filter_hook, $widget_tags );
|
|
|
|
|
|
|
|
if ( is_array( $widget_tags ) ) {
|
|
|
|
register_sidebar( $args + $widget_tags );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-01-20 16:02:53 +00:00
|
|
|
|
2016-02-19 16:57:56 +00:00
|
|
|
/**
|
|
|
|
* Enqueue scripts and styles.
|
|
|
|
*
|
|
|
|
* @since 1.0.0
|
|
|
|
*/
|
|
|
|
public function scripts() {
|
|
|
|
global $storefront_version;
|
2016-01-20 16:02:53 +00:00
|
|
|
|
2016-03-17 15:59:56 +00:00
|
|
|
/**
|
|
|
|
* Styles
|
|
|
|
*/
|
2016-02-19 16:57:56 +00:00
|
|
|
wp_enqueue_style( 'storefront-style', get_template_directory_uri() . '/style.css', '', $storefront_version );
|
|
|
|
wp_style_add_data( 'storefront-style', 'rtl', 'replace' );
|
2016-01-20 16:02:53 +00:00
|
|
|
|
2016-03-17 15:59:56 +00:00
|
|
|
/**
|
|
|
|
* Fonts
|
|
|
|
*/
|
|
|
|
$google_fonts = apply_filters( 'storefront_google_font_families', array(
|
2016-04-15 10:10:20 +01:00
|
|
|
'source-sans-pro' => 'Source+Sans+Pro:400,300,300italic,400italic,700,900',
|
2016-03-17 15:59:56 +00:00
|
|
|
) );
|
|
|
|
|
|
|
|
$query_args = array(
|
2016-04-15 10:10:20 +01:00
|
|
|
'family' => implode( '|', $google_fonts ),
|
2016-03-17 15:59:56 +00:00
|
|
|
'subset' => urlencode( 'latin,latin-ext' ),
|
|
|
|
);
|
|
|
|
|
|
|
|
$fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' );
|
|
|
|
|
|
|
|
wp_enqueue_style( 'storefront-fonts', $fonts_url, array(), null );
|
2016-02-25 15:49:19 +00:00
|
|
|
|
2016-03-17 15:59:56 +00:00
|
|
|
/**
|
|
|
|
* Scripts
|
|
|
|
*/
|
2016-02-19 16:57:56 +00:00
|
|
|
wp_enqueue_script( 'storefront-navigation', get_template_directory_uri() . '/assets/js/navigation.min.js', array( 'jquery' ), '20120206', true );
|
|
|
|
wp_enqueue_script( 'storefront-skip-link-focus-fix', get_template_directory_uri() . '/assets/js/skip-link-focus-fix.min.js', array(), '20130115', true );
|
2016-01-20 16:02:53 +00:00
|
|
|
|
2016-02-19 16:57:56 +00:00
|
|
|
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
|
|
|
|
wp_enqueue_script( 'comment-reply' );
|
|
|
|
}
|
2016-01-20 16:02:53 +00:00
|
|
|
}
|
|
|
|
|
2016-02-19 16:57:56 +00:00
|
|
|
/**
|
|
|
|
* Enqueue child theme stylesheet.
|
|
|
|
* A separate function is required as the child theme css needs to be enqueued _after_ the parent theme
|
|
|
|
* primary css and the separate WooCommerce css.
|
|
|
|
*
|
|
|
|
* @since 1.5.3
|
|
|
|
*/
|
|
|
|
public function child_scripts() {
|
|
|
|
if ( is_child_theme() ) {
|
|
|
|
wp_enqueue_style( 'storefront-child-style', get_stylesheet_uri(), '' );
|
|
|
|
}
|
2016-01-20 16:02:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-02-19 16:57:56 +00:00
|
|
|
* Get our wp_nav_menu() fallback, wp_page_menu(), to show a home link.
|
|
|
|
*
|
|
|
|
* @param array $args Configuration arguments.
|
|
|
|
* @return array
|
2016-01-20 16:02:53 +00:00
|
|
|
*/
|
2016-02-19 16:57:56 +00:00
|
|
|
public function page_menu_args( $args ) {
|
|
|
|
$args['show_home'] = true;
|
|
|
|
return $args;
|
2016-01-20 16:02:53 +00:00
|
|
|
}
|
|
|
|
|
2016-02-19 16:57:56 +00:00
|
|
|
/**
|
|
|
|
* Adds custom classes to the array of body classes.
|
|
|
|
*
|
|
|
|
* @param array $classes Classes for the body element.
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function body_classes( $classes ) {
|
|
|
|
// Adds a class of group-blog to blogs with more than 1 published author.
|
|
|
|
if ( is_multi_author() ) {
|
|
|
|
$classes[] = 'group-blog';
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! function_exists( 'woocommerce_breadcrumb' ) ) {
|
|
|
|
$classes[] = 'no-wc-breadcrumb';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* What is this?!
|
|
|
|
* Take the blue pill, close this file and forget you saw the following code.
|
|
|
|
* Or take the red pill, filter storefront_make_me_cute and see how deep the rabbit hole goes...
|
|
|
|
*/
|
|
|
|
$cute = apply_filters( 'storefront_make_me_cute', false );
|
|
|
|
|
|
|
|
if ( true === $cute ) {
|
|
|
|
$classes[] = 'storefront-cute';
|
|
|
|
}
|
|
|
|
|
|
|
|
// If our main sidebar doesn't contain widgets, adjust the layout to be full-width.
|
|
|
|
if ( ! is_active_sidebar( 'sidebar-1' ) ) {
|
|
|
|
$classes[] = 'storefront-full-width-content';
|
|
|
|
}
|
|
|
|
|
|
|
|
return $classes;
|
2016-01-20 16:02:53 +00:00
|
|
|
}
|
2016-03-18 18:48:40 +00:00
|
|
|
|
2016-08-01 11:17:10 +01:00
|
|
|
/**
|
|
|
|
* Custom navigation markup template hooked into `navigation_markup_template` filter hook.
|
|
|
|
*/
|
|
|
|
public function navigation_markup_template() {
|
|
|
|
$template = '<nav id="post-navigation" class="navigation %1$s" role="navigation" aria-label="Post Navigation">';
|
|
|
|
$template .= '<span class="screen-reader-text">%2$s</span>';
|
|
|
|
$template .= '<div class="nav-links">%3$s</div>';
|
|
|
|
$template .= '</nav>';
|
|
|
|
|
|
|
|
return apply_filters( 'storefront_navigation_markup_template', $template );
|
|
|
|
}
|
2016-07-27 19:40:14 +02:00
|
|
|
|
2016-03-18 18:48:40 +00:00
|
|
|
/**
|
|
|
|
* Add styles for embeds
|
|
|
|
*/
|
|
|
|
public function print_embed_styles() {
|
2016-04-15 10:10:20 +01:00
|
|
|
wp_enqueue_style( 'source-sans-pro', '//fonts.googleapis.com/css?family=Source+Sans+Pro:400,300,300italic,400italic,700,900' );
|
|
|
|
$accent_color = get_theme_mod( 'storefront_accent_color' );
|
|
|
|
$background_color = storefront_get_content_background_color();
|
2016-03-18 18:48:40 +00:00
|
|
|
?>
|
|
|
|
<style type="text/css">
|
|
|
|
.wp-embed {
|
2016-08-22 11:30:38 +01:00
|
|
|
padding: 2.618em !important;
|
2016-03-18 18:48:40 +00:00
|
|
|
border: 0 !important;
|
2016-04-15 10:10:20 +01:00
|
|
|
border-radius: 3px !important;
|
|
|
|
font-family: "Source Sans Pro", "Open Sans", sans-serif !important;
|
2016-03-18 18:48:40 +00:00
|
|
|
-webkit-font-smoothing: antialiased;
|
2016-04-15 10:10:20 +01:00
|
|
|
background-color: <?php echo storefront_adjust_color_brightness( $background_color, -7 ); ?> !important;
|
2016-03-18 18:48:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.wp-embed .wp-embed-featured-image {
|
2016-08-22 11:30:38 +01:00
|
|
|
margin-bottom: 2.618em;
|
2016-03-18 18:48:40 +00:00
|
|
|
}
|
|
|
|
|
2016-04-15 10:10:20 +01:00
|
|
|
.wp-embed .wp-embed-featured-image img,
|
|
|
|
.wp-embed .wp-embed-featured-image.square {
|
|
|
|
min-width: 100%;
|
2016-08-22 11:30:38 +01:00
|
|
|
margin-bottom: .618em;
|
2016-03-18 18:48:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a.wc-embed-button {
|
2016-08-22 11:30:38 +01:00
|
|
|
padding: .857em 1.387em !important;
|
2016-03-18 18:48:40 +00:00
|
|
|
font-weight: 600;
|
2016-03-21 10:14:37 +00:00
|
|
|
background-color: <?php echo esc_attr( $accent_color ); ?>;
|
2016-03-18 18:48:40 +00:00
|
|
|
color: #fff !important;
|
|
|
|
border: 0 !important;
|
|
|
|
line-height: 1;
|
|
|
|
border-radius: 0 !important;
|
|
|
|
box-shadow:
|
|
|
|
inset 0 -1px 0 rgba(#000,.3);
|
|
|
|
}
|
2016-03-21 10:14:37 +00:00
|
|
|
|
|
|
|
a.wc-embed-button + a.wc-embed-button {
|
|
|
|
background-color: #60646c;
|
|
|
|
}
|
2016-03-18 18:48:40 +00:00
|
|
|
</style>
|
|
|
|
<?php
|
2016-06-01 12:26:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-09-26 23:14:46 +02:00
|
|
|
* Sets `self::structured_data`.
|
|
|
|
*
|
|
|
|
* @param array $json
|
2016-06-01 12:26:01 +01:00
|
|
|
*/
|
|
|
|
public static function set_structured_data( $json ) {
|
|
|
|
if ( ! is_array( $json ) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
self::$structured_data[] = $json;
|
|
|
|
}
|
2016-01-20 16:02:53 +00:00
|
|
|
|
2016-06-01 12:26:01 +01:00
|
|
|
/**
|
2016-09-26 23:14:46 +02:00
|
|
|
* Outputs structured data.
|
|
|
|
*
|
|
|
|
* Hooked into `wp_footer` action hook.
|
2016-06-01 12:26:01 +01:00
|
|
|
*/
|
|
|
|
public function get_structured_data() {
|
|
|
|
if ( ! self::$structured_data ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-07-20 01:02:40 +02:00
|
|
|
$structured_data['@context'] = 'http://schema.org/';
|
2016-06-01 12:26:01 +01:00
|
|
|
|
|
|
|
if ( count( self::$structured_data ) > 1 ) {
|
2016-07-20 01:02:40 +02:00
|
|
|
$structured_data['@graph'] = self::$structured_data;
|
2016-06-01 12:26:01 +01:00
|
|
|
} else {
|
2016-07-20 01:02:40 +02:00
|
|
|
$structured_data = $structured_data + self::$structured_data[0];
|
2016-06-01 12:26:01 +01:00
|
|
|
}
|
2016-07-28 11:18:46 -03:00
|
|
|
|
2016-09-26 23:14:46 +02:00
|
|
|
echo '<script type="application/ld+json">' . wp_json_encode( $this->sanitize_structured_data( $structured_data ) ) . '</script>';
|
2016-06-01 12:26:01 +01:00
|
|
|
}
|
2016-07-28 11:18:46 -03:00
|
|
|
|
|
|
|
/**
|
2016-09-26 23:14:46 +02:00
|
|
|
* Sanitizes structured data.
|
2016-07-28 11:18:46 -03:00
|
|
|
*
|
|
|
|
* @param array $data
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function sanitize_structured_data( $data ) {
|
|
|
|
$sanitized = array();
|
|
|
|
|
|
|
|
foreach ( $data as $key => $value ) {
|
|
|
|
if ( is_array( $value ) ) {
|
|
|
|
$sanitized_value = $this->sanitize_structured_data( $value );
|
|
|
|
} else {
|
|
|
|
$sanitized_value = sanitize_text_field( $value );
|
|
|
|
}
|
|
|
|
|
|
|
|
$sanitized[ sanitize_text_field( $key ) ] = $sanitized_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $sanitized;
|
|
|
|
}
|
2016-06-01 12:26:01 +01:00
|
|
|
}
|
2016-01-20 16:02:53 +00:00
|
|
|
endif;
|
|
|
|
|
2016-02-19 16:57:56 +00:00
|
|
|
return new Storefront();
|