You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
2.4 KiB
107 lines
2.4 KiB
<?php |
|
/** |
|
* Aldine Filters |
|
* |
|
* @package Aldine |
|
*/ |
|
|
|
namespace Aldine\Filters; |
|
|
|
use function Aldine\Helpers\has_sections; |
|
use PressbooksMix\Assets; |
|
|
|
/** |
|
* Adds custom classes to the array of body classes. |
|
* |
|
* @see https://github.com/roots/sage/blob/master/app/filters.php |
|
* |
|
* @param array $classes Classes for the body element. |
|
* @return array |
|
*/ |
|
function body_classes( array $classes ) { |
|
/** Add page slug if it doesn't exist */ |
|
if ( is_single() || is_page() && ! is_front_page() ) { |
|
if ( ! in_array( basename( get_permalink() ), $classes, true ) ) { |
|
$classes[] = basename( get_permalink() ); |
|
} |
|
} |
|
|
|
/** Add .has-sections if page content has sections */ |
|
if ( is_single() || is_front_page() || is_page() && has_sections( get_the_ID() ) ) { |
|
$classes[] = 'has-sections'; |
|
} |
|
|
|
/** Clean up class names for custom templates */ |
|
$classes = array_map( |
|
function ( $class ) { |
|
return preg_replace( [ '/-php$/', '/^page-template-views/' ], '', $class ); |
|
}, $classes |
|
); |
|
|
|
return array_filter( $classes ); |
|
} |
|
|
|
/** |
|
* Add custom query vars for catalog. |
|
* |
|
* @param array $vars The array of available query variables. |
|
* |
|
* @link https://codex.wordpress.org/Plugin_API/Filter_Reference/query_vars |
|
*/ |
|
function register_query_vars( $vars ) { |
|
$vars[] = 'license'; |
|
$vars[] = 'subject'; |
|
return $vars; |
|
} |
|
|
|
/** |
|
* Customize excerpt. |
|
* |
|
* @return string |
|
*/ |
|
function excerpt_more() { |
|
return ' … <a href="' . get_permalink() . '">' . __( 'Continued', 'pressbooks-aldine' ) . '</a>'; |
|
} |
|
|
|
/** |
|
* Add things to the menu. |
|
* |
|
* @param string $items |
|
* @param object $args |
|
* @return string |
|
*/ |
|
|
|
function adjust_menu( $items, $args ) { |
|
if ( $args->theme_location === 'primary-menu' ) { |
|
return \Aldine\Helpers\get_default_menu( $items ); |
|
} |
|
|
|
return $items; |
|
} |
|
|
|
/** |
|
* Add TinyMCE Buttons. |
|
* |
|
* @since 1.1.0 |
|
*/ |
|
function add_buttons( $plugin_array ) { |
|
$assets = new Assets( 'pressbooks-aldine', 'theme' ); |
|
$assets->setSrcDirectory( 'assets' )->setDistDirectory( 'dist' ); |
|
|
|
$plugin_array['aldine_call_to_action'] = $assets->getPath( 'scripts/call-to-action.js' ); |
|
$plugin_array['aldine_page_section'] = $assets->getPath( 'scripts/page-section.js' ); |
|
return $plugin_array; |
|
} |
|
|
|
/** |
|
* Register TinyMCE Buttons. |
|
* |
|
* @since 1.1.0 |
|
*/ |
|
function register_buttons( $buttons ) { |
|
$c = count( $buttons ); |
|
$i = $c - 2; |
|
$new_items = [ 'aldine_page_section', 'aldine_call_to_action' ]; |
|
array_splice( $buttons, $i, 0, $new_items ); |
|
return $buttons; |
|
}
|
|
|