File: /var/www/web37/htdocs/sexnetzwerk24/wp-content/themes/classipress/framework/load.php
<?php
/**
* AppThemes Framework load
*
* @package Framework
*/
define( 'APP_FRAMEWORK_DIR', dirname( __FILE__ ) );
if ( ! defined( 'APP_FRAMEWORK_DIR_NAME' ) ) {
define( 'APP_FRAMEWORK_DIR_NAME', 'framework' );
}
if ( ! defined( 'APP_FRAMEWORK_URI' ) ) {
define( 'APP_FRAMEWORK_URI', get_template_directory_uri() . '/' . APP_FRAMEWORK_DIR_NAME );
}
// scbFramework
require_once dirname( __FILE__ ) . '/scb/load.php';
require_once dirname( __FILE__ ) . '/kernel/functions.php';
// Theme specific items
if ( appthemes_in_template_directory() || apply_filters( 'appthemes_force_load_theme_specific_items', false ) ) {
// Default filters
add_filter( 'wp_title', 'appthemes_title_tag', 9 );
add_action( 'wp_head', 'appthemes_favicon' );
add_action( 'admin_head', 'appthemes_favicon' );
appthemes_load_textdomain();
}
require_once dirname( __FILE__ ) . '/kernel/hook-deprecator.php';
require_once dirname( __FILE__ ) . '/kernel/deprecated.php';
require_once dirname( __FILE__ ) . '/kernel/hooks.php';
require_once dirname( __FILE__ ) . '/kernel/view-types.php';
require_once dirname( __FILE__ ) . '/kernel/view-edit-profile.php';
require_once dirname( __FILE__ ) . '/includes/ajax/class-ajax-view.php';
require_once dirname( __FILE__ ) . '/kernel/mail-from.php';
require_once dirname( __FILE__ ) . '/kernel/social.php';
if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
require_once dirname( __FILE__ ) . '/kernel/debug.php';
}
require_once dirname( __FILE__ ) . '/kernel/notices.php';
// Breadcrumbs plugin
if ( ! is_admin() && ! function_exists( 'breadcrumb_trail' ) ) {
require_once dirname( __FILE__ ) . '/kernel/breadcrumb-trail.php';
}
function _appthemes_after_scb_loaded() {
if ( is_admin() ) {
require_once dirname( __FILE__ ) . '/admin/functions.php';
// TODO: pass 'class-dashboard.php' file to 'appthemes_register_feature()' when all themes will use Features API
require_once dirname( __FILE__ ) . '/admin/class-dashboard.php';
require_once dirname( __FILE__ ) . '/admin/class-tooltips.php';
require_once dirname( __FILE__ ) . '/admin/class-tabs-page.php';
require_once dirname( __FILE__ ) . '/admin/class-settings.php';
require_once dirname( __FILE__ ) . '/admin/class-system-info.php';
require_once dirname( __FILE__ ) . '/admin/class-meta-box.php';
require_once dirname( __FILE__ ) . '/admin/class-attachments-metabox.php';
require_once dirname( __FILE__ ) . '/admin/class-media-manager-metabox.php';
require_once dirname( __FILE__ ) . '/admin/class-upgrader.php';
}
}
scb_init( '_appthemes_after_scb_loaded' );
// register framework features to be enqueued in the plugin or theme using Features API
if ( function_exists( 'appthemes_register_feature' ) ) {
appthemes_register_feature( 'app-wrapping', dirname( __FILE__ ) . '/includes/wrapping.php' );
appthemes_register_feature( 'app-geo', dirname( __FILE__ ) . '/includes/geo.php' );
appthemes_register_feature( 'app-login', dirname( __FILE__ ) . '/includes/views-login.php' );
appthemes_register_feature( 'app-stats', dirname( __FILE__ ) . '/includes/stats.php' );
appthemes_register_feature( 'app-open-graph', dirname( __FILE__ ) . '/includes/open-graph.php' );
appthemes_register_feature( 'app-search-index', dirname( __FILE__ ) . '/includes/search-index.php' );
appthemes_register_feature( 'app-comment-counts', dirname( __FILE__ ) . '/includes/comment-counts.php' );
appthemes_register_feature( 'app-term-counts', dirname( __FILE__ ) . '/includes/term-counts.php' );
appthemes_register_feature( 'app-slider', dirname( __FILE__ ) . '/includes/slider/slider.php' );
appthemes_register_feature( 'app-tables', dirname( __FILE__ ) . '/includes/tables.php' );
appthemes_register_feature( 'app-ajax-favorites', dirname( __FILE__ ) . '/includes/ajax/class-ajax-view-favorites.php' );
appthemes_register_feature( 'app-ajax-delete', dirname( __FILE__ ) . '/includes/ajax/class-ajax-view-delete-post.php' );
appthemes_register_feature( 'app-user-meta-box', dirname( __FILE__ ) . '/admin/class-user-meta-box.php' );
appthemes_register_feature( 'app-media-manager', dirname( __FILE__ ) . '/media-manager/media-manager.php' );
appthemes_register_feature( 'app-plupload', dirname( __FILE__ ) . '/app-plupload/app-plupload.php' );
appthemes_register_feature( 'app-feed', true );
appthemes_register_feature( 'app-dashboard', true );
appthemes_register_feature( 'app-versions', ( is_admin() ) ? dirname( __FILE__ ) . '/admin/versions.php' : true );
appthemes_register_feature( 'app-html-term-description', dirname( __FILE__ ) . '/admin/class-html-term-description.php' );
}
function _appthemes_load_features() {
// checks if Features API used to load framework (temporary solution)
// TODO: remove this checking and direct file loadings when all themes will use Features API
$is_feature_api = function_exists( 'appthemes_register_feature' );
if ( current_theme_supports( 'app-wrapping' ) && ! $is_feature_api ) {
require_once dirname( __FILE__ ) . '/includes/wrapping.php';
}
if ( current_theme_supports( 'app-geo' ) && ! $is_feature_api ) {
require_once dirname( __FILE__ ) . '/includes/geo.php';
}
if ( current_theme_supports( 'app-login' ) ) {
if ( ! $is_feature_api ) {
require_once dirname( __FILE__ ) . '/includes/views-login.php';
}
list( $templates ) = get_theme_support( 'app-login' );
new APP_Login( $templates['login'] );
new APP_Registration( $templates['register'] );
new APP_Password_Recovery( $templates['recover'] );
new APP_Password_Reset( $templates['reset'] );
}
if ( current_theme_supports( 'app-feed' ) ) {
add_filter( 'request', 'appthemes_modify_feed_content' );
}
if ( current_theme_supports( 'app-stats' ) ) {
if ( ! $is_feature_api ) {
require_once dirname( __FILE__ ) . '/includes/stats.php';
}
APP_Post_Statistics::init();
}
if ( current_theme_supports( 'app-open-graph' ) ) {
if ( ! $is_feature_api ) {
require_once dirname( __FILE__ ) . '/includes/open-graph.php';
}
list( $args ) = get_theme_support( 'app-open-graph' );
new APP_Open_Graph( (array) $args );
}
if ( is_admin() && current_theme_supports( 'app-versions' ) && ! $is_feature_api ) {
require_once dirname( __FILE__ ) . '/admin/versions.php';
}
if ( current_theme_supports( 'app-search-index' ) ) {
if ( ! $is_feature_api ) {
require_once dirname( __FILE__ ) . '/includes/search-index.php';
}
if ( is_admin() && appthemes_search_index_get_args( 'admin_page' ) ) {
new APP_Search_Index_Admin();
}
}
if ( current_theme_supports( 'app-comment-counts' ) && ! $is_feature_api ) {
require_once dirname( __FILE__ ) . '/includes/comment-counts.php';
}
if ( current_theme_supports( 'app-term-counts' ) && ! $is_feature_api ) {
require_once dirname( __FILE__ ) . '/includes/term-counts.php';
}
if ( is_admin() && current_theme_supports( 'app-html-term-description' ) ) {
if ( ! $is_feature_api ) {
require_once dirname( __FILE__ ) . '/admin/class-html-term-description.php';
}
$args_sets = get_theme_support( 'app-html-term-description' );
if ( ! is_array( $args_sets ) ) {
$args_sets = array();
}
foreach ( $args_sets as $args ) {
$args = wp_parse_args( (array) $args, array( 'taxonomy' => '', 'editor_settings' => array() ) );
new APP_HTML_Term_Description( $args['taxonomy'], $args['editor_settings'] );
}
}
if ( current_theme_supports( 'app-ajax-favorites' ) ) {
if ( ! $is_feature_api ) {
require_once dirname( __FILE__ ) . '/includes/ajax/class-ajax-view-favorites.php';
}
new APP_Ajax_View_Favorites();
}
if ( current_theme_supports( 'app-ajax-delete' ) ) {
if ( ! $is_feature_api ) {
require_once dirname( __FILE__ ) . '/includes/ajax/class-ajax-view-delete-post.php';
}
new APP_Ajax_View_Delete_Post();
}
if ( current_theme_supports( 'app-plupload' ) && ! $is_feature_api ) {
require_once dirname( __FILE__ ) . '/app-plupload/app-plupload.php';
}
if ( current_theme_supports( 'app-slider' ) && ! $is_feature_api ) {
require_once dirname( __FILE__ ) . '/includes/slider/slider.php';
}
if ( current_theme_supports( 'app-media-manager' ) ) {
if ( ! $is_feature_api ) {
require_once dirname( __FILE__ ) . '/media-manager/media-manager.php';
}
// init media manager
new APP_Media_Manager;
}
if ( is_admin() && current_theme_supports( 'app-dashboard' ) ) {
// init dashboard
new APP_Dashboard( array( 'admin_action_priority' => 8 ) );
new APP_Settings;
new APP_System_Info( array( 'admin_action_priority' => 99 ) );
}
// init notices
APP_Notices::init();
do_action( 'appthemes_framework_loaded' );
}
add_action( 'after_setup_theme', '_appthemes_load_features', 999 );
function _appthemes_register_scripts() {
require_once APP_FRAMEWORK_DIR . '/js/localization.php';
wp_register_style( 'jquery-ui-style', APP_FRAMEWORK_URI . '/styles/jquery-ui/jquery-ui.min.css', false, '1.11.2' );
wp_register_script( 'colorbox', APP_FRAMEWORK_URI . '/js/colorbox/jquery.colorbox.min.js', array( 'jquery' ), '1.5.14' );
wp_register_style( 'colorbox', APP_FRAMEWORK_URI . '/js/colorbox/colorbox.css', false, '1.5.14' );
wp_register_style( 'font-awesome', APP_FRAMEWORK_URI . '/styles/font-awesome.min.css', false, '4.2.0' );
wp_register_script( 'validate', APP_FRAMEWORK_URI . '/js/validate/jquery.validate.min.js', array( 'jquery' ), '1.13.0' );
wp_register_script( 'footable', APP_FRAMEWORK_URI . '/js/footable/jquery.footable.min.js', array( 'jquery' ), '2.0.3' );
wp_register_script( 'footable-grid', APP_FRAMEWORK_URI . '/js/footable/jquery.footable.grid.min.js', array( 'footable' ), '2.0.3' );
wp_register_script( 'footable-sort', APP_FRAMEWORK_URI . '/js/footable/jquery.footable.sort.min.js', array( 'footable' ), '2.0.3' );
wp_register_script( 'footable-filter', APP_FRAMEWORK_URI . '/js/footable/jquery.footable.filter.min.js', array( 'footable' ), '2.0.3' );
wp_register_script( 'footable-striping', APP_FRAMEWORK_URI . '/js/footable/jquery.footable.striping.min.js', array( 'footable' ), '2.0.3' );
wp_register_script( 'footable-paginate', APP_FRAMEWORK_URI . '/js/footable/jquery.footable.paginate.min.js', array( 'footable' ), '2.0.3' );
wp_register_script( 'footable-bookmarkable', APP_FRAMEWORK_URI . '/js/footable/jquery.footable.bookmarkable.min.js', array( 'footable' ), '2.0.3' );
// Generic JS data
wp_localize_script( 'jquery', 'AppThemes', array(
'ajaxurl' => admin_url( 'admin-ajax.php' ),
'current_url' => scbUtil::get_current_url(),
) );
_appthemes_localize_scripts();
}
add_action( 'wp_enqueue_scripts', '_appthemes_register_scripts' );
add_action( 'admin_enqueue_scripts', '_appthemes_register_scripts' );