File: /home/zeusxp5/zenoxpressjobs.com/wp-content/plugins/toolbar-extras/includes/themes/items-hestia.php
<?php
// includes/themes/items-hestia
/**
* Prevent direct access to this file.
*
* @since 1.0.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit( 'Sorry, you are not allowed to access this file directly.' );
}
add_action( 'admin_bar_menu', 'ddw_tbex_themeitems_hestia', 100 );
/**
* Items for Theme: Hestia & Hestia Child Themes (all free, by Themeisle)
*
* @since 1.1.0
*
* @uses ddw_tbex_string_theme_title()
* @uses ddw_tbex_customizer_start()
*
* @param object $admin_bar Object of Toolbar nodes.
*/
function ddw_tbex_themeitems_hestia( $admin_bar ) {
/** Hestia creative */
$admin_bar->add_node(
array(
'id' => 'theme-creative',
'parent' => 'group-active-theme',
'title' => ddw_tbex_string_theme_title( 'title', 'child' ),
'href' => esc_url( admin_url( 'themes.php?page=hestia-welcome' ) ),
'meta' => array(
'target' => '',
'title' => ddw_tbex_string_theme_title( 'attr', 'child' ),
)
)
);
$admin_bar->add_node(
array(
'id' => 'theme-creative-customize',
'parent' => 'theme-creative',
'title' => esc_attr__( 'Customize Design', 'toolbar-extras' ),
'href' => ddw_tbex_customizer_start(),
'meta' => array(
'target' => ddw_tbex_meta_target(),
'title' => esc_attr__( 'Customize Design', 'toolbar-extras' ),
)
)
);
} // end function
add_action( 'admin_bar_menu', 'ddw_tbex_themeitems_hestia_customize', 100 );
/**
* Customize items for Hestia Theme
*
* @since 1.1.0
*
* @uses ddw_tbex_customizer_focus()
* @uses ddw_tbex_string_customize_attr()
*
* @param object $admin_bar Object of Toolbar nodes.
*/
function ddw_tbex_themeitems_hestia_customize( $admin_bar ) {
$admin_bar->add_node(
array(
'id' => 'hestiacmz-appearance',
'parent' => 'theme-creative-customize',
/* translators: Autofocus panel in the Customizer */
'title' => esc_attr__( 'Appearance Settings', 'toolbar-extras' ),
'href' => ddw_tbex_customizer_focus( 'panel', 'hestia_appearance_settings' ),
'meta' => array(
'target' => ddw_tbex_meta_target(),
'title' => ddw_tbex_string_customize_attr( __( 'Appearance Settings', 'toolbar-extras' ) ),
)
)
);
$hestia_supported = array( 'hestia', 'orfeo', 'christmas-hestia' );
if ( in_array( get_stylesheet(), $hestia_supported ) ) {
$admin_bar->add_node(
array(
'id' => 'hestiacmz-frontpage',
'parent' => 'theme-creative-customize',
/* translators: Autofocus panel in the Customizer */
'title' => esc_attr__( 'Frontpage Sections', 'toolbar-extras' ),
'href' => ddw_tbex_customizer_focus( 'panel', 'hestia_frontpage_sections' ),
'meta' => array(
'target' => ddw_tbex_meta_target(),
'title' => ddw_tbex_string_customize_attr( __( 'Frontpage Sections', 'toolbar-extras' ) ),
)
)
);
$admin_bar->add_node(
array(
'id' => 'hestiacmz-blog',
'parent' => 'theme-creative-customize',
/* translators: Autofocus section in the Customizer */
'title' => esc_attr__( 'Blog Settings', 'toolbar-extras' ),
'href' => ddw_tbex_customizer_focus( 'section', 'hestia_blog_layout', get_post_type_archive_link( 'post' ) ),
'meta' => array(
'target' => ddw_tbex_meta_target(),
'title' => ddw_tbex_string_customize_attr( __( 'Blog Settings', 'toolbar-extras' ) ),
)
)
);
} // end if
$admin_bar->add_node(
array(
'id' => 'hestiacmz-header',
'parent' => 'theme-creative-customize',
/* translators: Autofocus section in the Customizer */
'title' => esc_attr__( 'Header Settings', 'toolbar-extras' ),
'href' => ddw_tbex_customizer_focus( 'section', 'header_image' ),
'meta' => array(
'target' => ddw_tbex_meta_target(),
'title' => ddw_tbex_string_customize_attr( __( 'Header Settings', 'toolbar-extras' ) ),
)
)
);
} // end function
add_action( 'admin_bar_menu', 'ddw_tbex_themeitems_hestia_resources', 120 );
/**
* General resources items for Hestia Theme.
* Hook in later to have these items at the bottom.
*
* @since 1.1.0
*
* @uses ddw_tbex_display_items_resources()
* @uses ddw_tbex_resource_item()
*
* @param object $admin_bar Object of Toolbar nodes.
*/
function ddw_tbex_themeitems_hestia_resources( $admin_bar ) {
/** Bail early if no resources display active */
if ( ! ddw_tbex_display_items_resources() ) {
return $admin_bar;
}
/** Group: Theme's resources */
$admin_bar->add_group(
array(
'id' => 'group-theme-resources',
'parent' => 'theme-creative',
'meta' => array( 'class' => 'ab-sub-secondary' ),
)
);
ddw_tbex_resource_item(
'support-forum',
'theme-support',
'group-theme-resources',
'https://wordpress.org/support/theme/hestia'
);
ddw_tbex_resource_item(
'documentation',
'theme-docs',
'group-theme-resources',
'https://docs.themeisle.com/article/753-hestia-doc'
);
ddw_tbex_resource_item(
'translations-community',
'theme-translate',
'group-theme-resources',
'https://translate.wordpress.org/projects/wp-themes/hestia'
);
ddw_tbex_resource_item(
'official-site',
'theme-site',
'group-theme-resources',
'https://themeisle.com/themes/hestia/'
);
} // end function