????
| Current Path : /home2/morganrand/www/wp-content/themes/wanderfuls-2/framework/portfolio/ |
| Current File : /home2/morganrand/www/wp-content/themes/wanderfuls-2/framework/portfolio/portfolio-config.php |
<?php
/**
* Portfolio Post Type Configuration file
*
* @package Wanderfuls WordPress Theme
* @subpackage Portfolio Functions
*/
class TB_Portfolio_Config {
private $label;
/**
* Get things started.
*
* @since 2.0.0
*/
public function __construct() {
// Update vars
$this->label = tb_get_mod( 'portfolio_labels' );
$this->label = $this->label ? $this->label : _x( 'Portfolio', 'Portfolio Post Type Label', 'tb' );
// Helper functions
require_once( TB_FRAMEWORK_DIR .'portfolio/portfolio-helpers.php' );
// Adds the portfolio post type
add_action( 'init', array( $this, 'register_post_type' ), 0 );
// Adds the portfolio taxonomies
add_action( 'init', array( $this, 'register_tags' ), 0 );
add_action( 'init', array( $this, 'register_categories' ), 0 );
// Adds columns in the admin view for taxonomies
add_filter( 'manage_edit-portfolio_columns', array( $this, 'edit_columns' ) );
add_action( 'manage_portfolio_posts_custom_column', array( $this, 'column_display' ), 10, 2 );
// Allows filtering of posts by taxonomy in the admin view
add_action( 'restrict_manage_posts', array( $this, 'tax_filters' ) );
// Create Editor for altering the post type arguments
add_action( 'admin_menu', array( $this, 'add_page' ) );
add_action( 'admin_init', array( $this,'register_page_options' ) );
add_action( 'admin_notices', array( $this, 'notices' ) );
// Adds the portfolio custom sidebar
add_filter( 'widgets_init', array( $this, 'register_sidebar' ) );
add_filter( 'tb_get_sidebar', array( $this, 'display_sidebar' ) );
// Alter the post layouts for portfolio posts and archives
add_filter( 'tb_post_layout_class', array( $this, 'layouts' ) );
// Posts per page
add_action( 'pre_get_posts', array( $this, 'posts_per_page' ) );
// Add image sizes
add_filter( 'tb_image_sizes', array( $this, 'add_image_sizes' ) );
// Single next/prev visibility
add_filter( 'tb_has_next_prev', array( $this, 'next_prev' ) );
// Tweak page header title
add_filter( 'tb_title', array( $this, 'tb_title' ) );
// Add gallery metabox to portfolio
add_filter( 'tb_gallery_metabox_post_types', array( $this, 'add_gallery_metabox' ), 20 );
// Return true for social share check so it can use the builder
add_filter( 'tb_has_social_share', array( $this, 'social_share' ) );
}
/**
* Register post type.
*
* @since 2.0.0
*/
public function register_post_type() {
// Get values and sanitize
$name = $this->label;
$singular_name = tb_get_mod( 'portfolio_singular_name' );
$singular_name = $singular_name ? $singular_name : __( 'Portfolio Item', 'tb' );
$slug = tb_get_mod( 'portfolio_slug' );
$slug = $slug ? $slug : 'portfolio-item';
$menu_icon = tb_get_mod( 'portfolio_admin_icon' );
$menu_icon = $menu_icon ? $menu_icon : 'portfolio';
$portfolio_search = tb_get_mod( 'portfolio_search', true );
$portfolio_search = ! $portfolio_search ? true : false;
// Args
$args = array(
'labels' => array(
'name' => $name,
'singular_name' => $singular_name,
'add_new' => __( 'Add New', 'tb' ),
'add_new_item' => __( 'Add New Item', 'tb' ),
'edit_item' => __( 'Edit Item', 'tb' ),
'new_item' => __( 'Add New Item', 'tb' ),
'view_item' => __( 'View Item', 'tb' ),
'search_items' => __( 'Search Items', 'tb' ),
'not_found' => __( 'No Items Found', 'tb' ),
'not_found_in_trash' => __( 'No Items Found In Trash', 'tb' )
),
'public' => true,
'capability_type' => 'post',
'has_archive' => false,
'menu_icon' => 'dashicons-'. $menu_icon,
'menu_position' => 20,
'exclude_from_search' => $portfolio_search,
'rewrite' => array(
'slug' => $slug,
),
'supports' => array(
'title',
'editor',
'excerpt',
'thumbnail',
'comments',
'custom-fields',
'revisions',
'author',
'page-attributes',
),
);
// Register the post type
register_post_type( 'portfolio', apply_filters( 'tb_portfolio_args', $args ) );
}
/**
* Register Portfolio tags.
*
* @since 2.0.0
*/
public static function register_tags() {
// Define and sanitize options
$name = tb_get_mod( 'portfolio_tag_labels');
$name = $name ? $name : __( 'Portfolio Tags', 'tb' );
$slug = tb_get_mod( 'portfolio_tag_slug' );
$slug = $slug ? $slug : 'portfolio-tag';
// Define portfolio tag arguments
$args = array(
'labels' => array(
'name' => $name,
'singular_name' => $name,
'menu_name' => $name,
'search_items' => __( 'Search','tb' ),
'popular_items' => __( 'Popular', 'tb' ),
'all_items' => __( 'All', 'tb' ),
'parent_item' => __( 'Parent', 'tb' ),
'parent_item_colon' => __( 'Parent', 'tb' ),
'edit_item' => __( 'Edit', 'tb' ),
'update_item' => __( 'Update', 'tb' ),
'add_new_item' => __( 'Add New', 'tb' ),
'new_item_name' => __( 'New', 'tb' ),
'separate_items_with_commas' => __( 'Separate with commas', 'tb' ),
'add_or_remove_items' => __( 'Add or remove', 'tb' ),
'choose_from_most_used' => __( 'Choose from the most used', 'tb' ),
),
'public' => true,
'show_in_nav_menus' => true,
'show_ui' => true,
'show_tagcloud' => true,
'hierarchical' => false,
'rewrite' => array(
'slug' => $slug,
),
'query_var' => true,
);
// Apply filters
$args = apply_filters( 'tb_taxonomy_portfolio_tag_args', $args );
// Register the portfolio tag taxonomy
register_taxonomy( 'portfolio_tag', array( 'portfolio' ), $args );
}
/**
* Register Portfolio category.
*
* @since 2.0.0
*/
public static function register_categories() {
// Define and sanitize options
$name = tb_get_mod( 'portfolio_cat_labels');
$name = $name ? $name : __( 'Portfolio Categories', 'tb' );
$slug = tb_get_mod( 'portfolio_cat_slug' );
$slug = $slug ? $slug : 'portfolio-category';
// Define portfolio category arguments
$args = array(
'labels' => array(
'name' => $name,
'singular_name' => $name,
'menu_name' => $name,
'search_items' => __( 'Search','tb' ),
'popular_items' => __( 'Popular', 'tb' ),
'all_items' => __( 'All', 'tb' ),
'parent_item' => __( 'Parent', 'tb' ),
'parent_item_colon' => __( 'Parent', 'tb' ),
'edit_item' => __( 'Edit', 'tb' ),
'update_item' => __( 'Update', 'tb' ),
'add_new_item' => __( 'Add New', 'tb' ),
'new_item_name' => __( 'New', 'tb' ),
'separate_items_with_commas' => __( 'Separate with commas', 'tb' ),
'add_or_remove_items' => __( 'Add or remove', 'tb' ),
'choose_from_most_used' => __( 'Choose from the most used', 'tb' ),
),
'public' => true,
'show_in_nav_menus' => true,
'show_ui' => true,
'show_tagcloud' => true,
'hierarchical' => true,
'rewrite' => array( 'slug' => $slug ),
'query_var' => true
);
// Apply filters
$args = apply_filters( 'tb_taxonomy_portfolio_category_args', $args );
// Register the portfolio category taxonomy
register_taxonomy( 'portfolio_category', array( 'portfolio' ), $args );
}
/**
* Adds columns to the WP dashboard edit screen.
*
* @since 2.0.0
*/
public static function edit_columns( $columns ) {
$columns['portfolio_category'] = __( 'Category', 'tb' );
$columns['portfolio_tag'] = __( 'Tags', 'tb' );
return $columns;
}
/**
* Adds columns to the WP dashboard edit screen.
*
* @since 2.0.0
*/
public static function column_display( $column, $post_id ) {
switch ( $column ) :
// Display the portfolio categories in the column view
case 'portfolio_category':
if ( $category_list = get_the_term_list( $post_id, 'portfolio_category', '', ', ', '' ) ) {
echo $category_list;
} else {
echo '—';
}
break;
// Display the portfolio tags in the column view
case 'portfolio_tag':
if ( $tag_list = get_the_term_list( $post_id, 'portfolio_tag', '', ', ', '' ) ) {
echo $tag_list;
} else {
echo '—';
}
break;
endswitch;
}
/**
* Adds taxonomy filters to the portfolio admin page.
*
* @since 2.0.0
*/
public static function tax_filters() {
global $typenow;
// An array of all the taxonomyies you want to display. Use the taxonomy name or slug
$taxonomies = array( 'portfolio_category', 'portfolio_tag' );
// must set this to the post type you want the filter(s) displayed on
if ( 'portfolio' == $typenow ) {
foreach ( $taxonomies as $tax_slug ) {
$current_tax_slug = isset( $_GET[$tax_slug] ) ? $_GET[$tax_slug] : false;
$tax_obj = get_taxonomy( $tax_slug );
$tax_name = $tax_obj->labels->name;
$terms = get_terms($tax_slug);
if ( count( $terms ) > 0) {
echo "<select name='$tax_slug' id='$tax_slug' class='postform'>";
echo "<option value=''>$tax_name</option>";
foreach ( $terms as $term ) {
echo '<option value=' . $term->slug, $current_tax_slug == $term->slug ? ' selected="selected"' : '','>' . $term->name .' (' . $term->count .')</option>';
}
echo "</select>";
}
}
}
}
/**
* Add sub menu page for the Portfolio Editor.
*
* @since 2.0.0
* @link http://codex.wordpress.org/Function_Reference/add_theme_page
*/
public function add_page() {
add_submenu_page(
'edit.php?post_type=portfolio',
__( 'Post Type Editor', 'tb' ),
__( 'Post Type Editor', 'tb' ),
'administrator',
'tb-portfolio-editor',
array( $this, 'create_admin_page' )
);
}
/**
* Function that will register the portfolio editor admin page.
*
* @since 2.0.0
* @link http://codex.wordpress.org/Function_Reference/register_setting
*/
public function register_page_options() {
register_setting( 'tb_portfolio_options', 'tb_portfolio_branding', array( $this, 'sanitize' ) );
}
/**
* Displays saved message after settings are successfully saved
*
* @since 2.0.0
* @link http://codex.wordpress.org/Function_Reference/settings_errors
*/
public static function notices() {
settings_errors( 'tb_portfolio_editor_page_notices' );
}
/**
* Sanitizes input and saves theme_mods.
*
* @since 2.0.0
*/
public static function sanitize( $options ) {
// Save values to theme mod
if ( ! empty ( $options ) ) {
foreach( $options as $key => $value ) {
if ( $value ) {
set_theme_mod( $key, $value );
}
}
}
// Add notice
add_settings_error(
'tb_portfolio_editor_page_notices',
esc_attr( 'settings_updated' ),
__( 'Settings saved.', 'tb' ),
'updated'
);
// Lets delete the options as we are saving them into theme mods
$options = '';
return $options;
}
/**
* Output for the actual Portfolio Editor admin page.
*
* @since 2.0.0
*/
public static function create_admin_page() { ?>
<div class="wrap">
<h2><?php _e( 'Post Type Editor', 'tb' ); ?></h2>
<form method="post" action="options.php">
<?php settings_fields( 'tb_portfolio_options' ); ?>
<p><?php _e( 'If you alter any slug\'s make sure to reset your permalinks to prevent 404 errors.', 'tb' ); ?></p>
<table class="form-table">
<tr valign="top">
<th scope="row"><?php _e( 'Admin Icon', 'tb' ); ?></th>
<td>
<?php
// Dashicons select
$dashicons = array('admin-appearance','admin-collapse','admin-comments','admin-generic','admin-home','admin-media','admin-network','admin-page','admin-plugins','admin-settings','admin-site','admin-tools','admin-users','align-center','align-left','align-none','align-right','analytics','arrow-down','arrow-down-alt','arrow-down-alt2','arrow-left','arrow-left-alt','arrow-left-alt2','arrow-right','arrow-right-alt','arrow-right-alt2','arrow-up','arrow-up-alt','arrow-up-alt2','art','awards','backup','book','book-alt','businessman','calendar','camera','cart','category','chart-area','chart-bar','chart-line','chart-pie','clock','cloud','dashboard','desktop','dismiss','download','edit','editor-aligncenter','editor-alignleft','editor-alignright','editor-bold','editor-customchar','editor-distractionfree','editor-help','editor-indent','editor-insertmore','editor-italic','editor-justify','editor-kitchensink','editor-ol','editor-outdent','editor-paste-text','editor-paste-word','editor-quote','editor-removeformatting','editor-rtl','editor-spellcheck','editor-strikethrough','editor-textcolor','editor-ul','editor-underline','editor-unlink','editor-video','email','email-alt','exerpt-view','facebook','facebook-alt','feedback','flag','format-aside','format-audio','format-chat','format-gallery','format-image','format-links','format-quote','format-standard','format-status','format-video','forms','googleplus','groups','hammer','id','id-alt','image-crop','image-flip-horizontal','image-flip-vertical','image-rotate-left','image-rotate-right','images-alt','images-alt2','info','leftright','lightbulb','list-view','location','location-alt','lock','marker','menu','migrate','minus','networking','no','no-alt','performance','plus','portfolio','post-status','pressthis','products','redo','rss','screenoptions','search','share','share-alt','share-alt2','share1','shield','shield-alt','slides','smartphone','smiley','sort','sos','star-empty','star-filled','star-half','tablet','tag','testimonial','translation','trash','twitter','undo','update','upload','vault','video-alt','video-alt2','video-alt3','visibility','welcome-add-page','welcome-comments','welcome-edit-page','welcome-learn-more','welcome-view-site','welcome-widgets-menus','wordpress','wordpress-alt','yes');
$dashicons = array_combine( $dashicons, $dashicons ); ?>
<select name="tb_portfolio_branding[portfolio_admin_icon]">
<option value="0"><?php _e( 'Select', 'tb' ); ?></option>
<?php foreach ( $dashicons as $dashicon ) { ?>
<option value="<?php echo $dashicon; ?>" <?php selected( tb_get_mod( 'portfolio_admin_icon' ), $dashicon, true ); ?>><?php echo $dashicon; ?></option>
<?php } ?>
</select>
</td>
</tr>
<tr valign="top">
<th scope="row"><?php _e( 'Post Type: Name', 'tb' ); ?></th>
<td><input type="text" name="tb_portfolio_branding[portfolio_labels]" value="<?php echo tb_get_mod( 'portfolio_labels' ); ?>" /></td>
</tr>
<tr valign="top">
<th scope="row"><?php _e( 'Post Type: Singular Name', 'tb' ); ?></th>
<td><input type="text" name="tb_portfolio_branding[portfolio_singular_name]" value="<?php echo tb_get_mod( 'portfolio_singular_name' ); ?>" /></td>
</tr>
<tr valign="top">
<th scope="row"><?php _e( 'Post Type: Slug', 'tb' ); ?></th>
<td><input type="text" name="tb_portfolio_branding[portfolio_slug]" value="<?php echo tb_get_mod( 'portfolio_slug' ); ?>" /></td>
</tr>
<tr valign="top">
<th scope="row"><?php _e( 'Tags: Label', 'tb' ); ?></th>
<td><input type="text" name="tb_portfolio_branding[portfolio_tag_labels]" value="<?php echo tb_get_mod( 'portfolio_tag_labels' ); ?>" /></td>
</tr>
<tr valign="top">
<th scope="row"><?php _e( 'Tags: Slug', 'tb' ); ?></th>
<td><input type="text" name="tb_portfolio_branding[portfolio_tag_slug]" value="<?php echo tb_get_mod( 'portfolio_tag_slug' ); ?>" /></td>
</tr>
<tr valign="top">
<th scope="row"><?php _e( 'Categories: Label', 'tb' ); ?></th>
<td><input type="text" name="tb_portfolio_branding[portfolio_cat_labels]" value="<?php echo tb_get_mod( 'portfolio_cat_labels' ); ?>" /></td>
</tr>
<tr valign="top">
<th scope="row"><?php _e( 'Categories: Slug', 'tb' ); ?></th>
<td><input type="text" name="tb_portfolio_branding[portfolio_cat_slug]" value="<?php echo tb_get_mod( 'portfolio_cat_slug' ); ?>" /></td>
</tr>
</table>
<?php submit_button(); ?>
</form>
</div>
<?php }
/**
* Registers a new custom portfolio sidebar.
*
* @since 2.0.0
*/
public static function register_sidebar() {
// Return if custom sidebar is disabled
if ( ! tb_get_mod( 'portfolio_custom_sidebar', true ) ) {
return;
}
// Get heading tag
$heading_tag = tb_get_mod( 'sidebar_headings', 'div' );
$heading_tag = $heading_tag ? $heading_tag : 'div';
// Get post type object to name sidebar correctly
$obj = get_post_type_object( 'portfolio' );
$post_type_name = $obj->labels->name;
// Register custom sidebar
register_sidebar( array (
'name' => $post_type_name .' '. __( 'Sidebar', 'tb' ),
'id' => 'portfolio_sidebar',
'before_widget' => '<div class="sidebar-box %2$s clr">',
'after_widget' => '</div>',
'before_title' => '<'. $heading_tag .' class="widget-title">',
'after_title' => '</'. $heading_tag .'>',
) );
}
/**
* Alter main sidebar to display portfolio sidebar.
*
* @since 2.0.0
*/
public static function display_sidebar( $sidebar ) {
// Display portfolio_sidebar where necessary
if ( tb_get_mod( 'portfolio_custom_sidebar', true ) && ( is_singular( 'portfolio' ) || tb_is_portfolio_tax() ) ) {
$sidebar = 'portfolio_sidebar';
}
// Return correct sidebar to display
return $sidebar;
}
/**
* Alter the post layouts for portfolio posts and archives.
*
* @since 2.0.0
*/
public static function layouts( $class ) {
if ( is_singular( 'portfolio' ) ) {
$class = tb_get_mod( 'portfolio_single_layout', 'full-width' );
} elseif ( tb_is_portfolio_tax() && ! is_search() ) {
$class = tb_get_mod( 'portfolio_archive_layout', 'full-width' );
}
return $class;
}
/**
* Alters posts per page for the portfolio taxonomies.
*
* @since 2.0.0
* @link http://codex.wordpress.org/Plugin_API/Action_Reference/pre_get_posts
*/
public static function posts_per_page( $query ) {
if ( tb_is_portfolio_tax() && $query->is_main_query() ) {
$query->set( 'posts_per_page', tb_get_mod( 'portfolio_archive_posts_per_page', '12' ) );
return;
}
}
/**
* Adds image sizes for the portfolio to the image sizes panel.
*
* @since 2.0.0
*/
public static function add_image_sizes( $sizes ) {
$obj = get_post_type_object( 'portfolio' );
$post_type_name = $obj->labels->singular_name;
$new_sizes = array(
'portfolio_entry' => array(
'label' => sprintf( __( '%s Entry', 'tb' ), $post_type_name ),
'width' => 'portfolio_entry_image_width',
'height' => 'portfolio_entry_image_height',
'crop' => 'portfolio_entry_image_crop',
),
'portfolio_post' => array(
'label' => sprintf( __( '%s Post', 'tb' ), $post_type_name ),
'width' => 'portfolio_post_image_width',
'height' => 'portfolio_post_image_height',
'crop' => 'portfolio_post_image_crop',
),
);
$sizes = array_merge( $sizes, $new_sizes );
return $sizes;
}
/**
* Adds the portfolio post type to the gallery metabox post types array.
*
* @since 2.0.0
*/
public static function add_gallery_metabox( $types ) {
$types[] = 'portfolio';
return $types;
}
/**
* Disables the next/previous links if disabled via the customizer.
*
* @since 2.0.0
*/
public static function next_prev( $return ) {
if ( is_singular( 'portfolio' ) && ! tb_get_mod( 'portfolio_next_prev', true ) ) {
$return = false;
}
return $return;
}
/**
* Tweak the page header
*
* @since 2.1.0
*/
public static function tb_title( $title ) {
if ( is_singular( 'portfolio' ) && in_array( 'title', tb_portfolio_post_blocks() ) ) {
$obj = get_post_type_object( 'portfolio' );
$title = $obj->labels->singular_name;
}
return $title;
}
/**
* Enables social sharing
*
* @since 2.1.0
*/
public static function social_share( $return ) {
if ( is_singular( 'portfolio' ) ) {
$return = true;
}
return $return;
}
/**
* Customizer settings
*
* @since 3.0.0
*/
public function customizer_settings( $sections ) {
if ( isset( $sections['tb_social_sharing'] ) ) {
$sections['tb_social_sharing']['settings'][] = array(
'id' => 'social_share_portfolio',
'default' => true,
'control' => array(
'label' => $this->label,
'type' => 'checkbox',
'active_callback' => 'tb_has_social_share_sites',
),
);
}
return $sections;
}
}
$tb_portfolio_config = new TB_Portfolio_Config;