woocommerce/includes/admin/class-wc-admin-addons.php

74 lines
2.1 KiB
PHP
Raw Normal View History

2013-08-06 13:04:24 +00:00
<?php
/**
2015-11-03 13:53:50 +00:00
* Addons Page
2013-08-06 13:04:24 +00:00
*
* @author WooThemes
* @category Admin
* @package WooCommerce/Admin
2013-08-06 13:04:24 +00:00
* @version 2.1.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
2013-08-06 13:04:24 +00:00
/**
* WC_Admin_Addons Class.
2013-08-06 13:04:24 +00:00
*/
class WC_Admin_Addons {
/**
* Handles the outputting of a contextually aware Storefront link (points to child themes if Storefront is already active).
*/
public static function output_storefront_button() {
$url = '';
$text = '';
$template = get_option( 'template' );
$stylesheet = get_option( 'stylesheet' );
// If we're using Storefront with a child theme.
if ( 'storefront' == $template && 'storefront' != $stylesheet ) {
$url = 'http:///www.woothemes.com/product-category/themes/storefront-child-theme-themes/';
$text = __( 'View more Storefront child themes', 'woocommerce' );
}
// If we're using Storefront without a child theme.
if ( 'storefront' == $template && 'storefront' == $stylesheet ) {
$url = 'http:///www.woothemes.com/product-category/themes/storefront-child-theme-themes/';
$text = __( 'Need a fresh look? Try Storefront child themes', 'woocommerce' );
}
// If we're not using Storefront at all.
if ( 'storefront' != $template && 'storefront' != $stylesheet ) {
$url = 'http://www.woothemes.com/storefront/';
$text = __( 'Need a theme? Try Storefront', 'woocommerce' );
}
if ( '' != $url && '' != $text ) {
echo '<a href="' . esc_url( $url ) . '" class="add-new-h2">' . esc_html( $text ) . '</a>' . "\n";
}
}
2013-08-06 13:04:24 +00:00
/**
* Handles output of the reports page in admin.
*/
public static function output() {
2013-08-06 13:04:24 +00:00
if ( false === ( $addons = get_transient( 'woocommerce_addons_data' ) ) ) {
$addons_json = wp_safe_remote_get( 'http://d3t0oesq8995hv.cloudfront.net/woocommerce-addons.json', array( 'user-agent' => 'WooCommerce Addons Page' ) );
if ( ! is_wp_error( $addons_json ) ) {
$addons = json_decode( wp_remote_retrieve_body( $addons_json ) );
if ( $addons ) {
set_transient( 'woocommerce_addons_data', $addons, WEEK_IN_SECONDS );
2013-08-06 13:04:24 +00:00
}
}
}
include_once( 'views/html-admin-page-addons.php' );
}
}