├── .gitattributes ├── .gitignore ├── CHANGES.md ├── LICENSE ├── LICENSE.txt ├── README.md ├── assets-repos ├── github-com │ └── tbex-banner.png └── wordpress-org │ ├── banner-1544x500.png │ ├── banner-772x250.png │ ├── icon-128x128.png │ ├── icon-256x256.png │ ├── index.php │ ├── screenshot-01.png │ ├── screenshot-02.png │ ├── screenshot-03.png │ ├── screenshot-04.png │ ├── screenshot-05.png │ ├── screenshot-06.png │ ├── screenshot-07.png │ ├── screenshot-08.png │ ├── screenshot-09.png │ ├── screenshot-10.png │ ├── screenshot-11.png │ ├── screenshot-12.png │ ├── screenshot-13.png │ ├── screenshot-14.png │ ├── screenshot-15.png │ ├── screenshot-16.png │ ├── screenshot-17.png │ ├── screenshot-18.png │ ├── screenshot-19.png │ ├── screenshot-20.png │ ├── screenshot-21.png │ ├── screenshot-22.png │ ├── screenshot-23.png │ ├── screenshot-24.png │ ├── screenshot-25.png │ ├── screenshot-26.png │ ├── screenshot-27.png │ ├── screenshot-28.png │ ├── screenshot-29.png │ ├── screenshot-30.png │ └── screenshot-31.png ├── assets ├── css │ ├── dashicons-picker.css │ ├── index.php │ ├── tbex-dashboard.css │ ├── tbex-help.css │ ├── tbex-notices.css │ ├── tbex-plugin-manager.css │ ├── tbex-settings.css │ ├── toolbar-overflow-fix.css │ └── toolbar-styles.css ├── images │ ├── index.php │ ├── plugin-author.jpg │ ├── tbex-icon.png │ └── tbex-icon.svg ├── index.php └── js │ ├── dashicons-picker.js │ ├── index.php │ ├── iris-config.js │ ├── tbex-selectall.js │ └── tbex-settings.js ├── composer.json ├── credits.txt ├── includes ├── admin │ ├── admin-extras.php │ ├── admin-help.php │ ├── class-dashboard-widget.php │ ├── class-settings-import-export.php │ ├── classes │ │ ├── astra-notices │ │ │ ├── class-astra-notices.php │ │ │ ├── index.php │ │ │ └── notices.js │ │ ├── ddwlib-plir │ │ │ ├── ddwlib-plir-styles.css │ │ │ ├── ddwlib-plir-styles.min.css │ │ │ ├── ddwlib-plugin-installer-recommendations.php │ │ │ ├── deckerweb-plugins-logo.png │ │ │ └── index.php │ │ ├── index.php │ │ ├── pand │ │ │ ├── dismiss-notice.js │ │ │ ├── index.php │ │ │ └── persist-admin-notices-dismissal.php │ │ └── plugin-manager │ │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── plugin-manager.css │ │ │ │ └── plugin-manager.min.css │ │ │ └── js │ │ │ │ ├── plugin-manager.js │ │ │ │ ├── plugin-manager.min.js │ │ │ │ ├── plugin-notices.js │ │ │ │ └── plugin-notices.min.js │ │ │ ├── class-toolbar-extras-plugin-manager.php │ │ │ ├── class-toolbar-extras-plugin-notices.php │ │ │ ├── class-toolbar-extras-plugins.php │ │ │ └── index.php │ ├── index.php │ ├── plugin-manager.php │ ├── tbex-addons.php │ ├── tbex-security-info.php │ ├── tbex-settings-development.php │ ├── tbex-settings-general.php │ ├── tbex-settings-smart-tweaks.php │ ├── tbex-settings.php │ └── views │ │ ├── elementor-settings-tab-info.php │ │ ├── help-content-about.php │ │ ├── help-content-addons.php │ │ ├── help-content-development.php │ │ ├── help-content-footer.php │ │ ├── help-content-general.php │ │ ├── help-content-getstarted.php │ │ ├── help-content-header.php │ │ ├── help-content-importexport.php │ │ ├── help-content-menus.php │ │ ├── help-content-sidebar.php │ │ ├── help-content-tweaks.php │ │ ├── index.php │ │ ├── notice-plugin-review.php │ │ ├── notice-plugins-welcome.php │ │ ├── notice-settings-welcome.php │ │ ├── settings-tab-about-support.php │ │ ├── settings-tab-development.php │ │ ├── settings-tab-general.php │ │ ├── settings-tab-import-export.php │ │ └── settings-tab-smart-tweaks.php ├── block-editor-addons │ ├── index.php │ ├── items-ab-testing.php │ ├── items-advanced-custom-blocks.php │ ├── items-advanced-gutenberg-blocks.php │ ├── items-advanced-gutenberg.php │ ├── items-amazon-block.php │ ├── items-atomic-blocks.php │ ├── items-block-areas.php │ ├── items-block-lab.php │ ├── items-block-layouts.php │ ├── items-block-style-guides.php │ ├── items-block-templates.php │ ├── items-blocks-google-map.php │ ├── items-blockypage.php │ ├── items-bootstrap-blocks.php │ ├── items-builder-template-categories.php │ ├── items-caxton.php │ ├── items-cloud-blocks.php │ ├── items-coblocks.php │ ├── items-cosmic-blocks.php │ ├── items-custom-color-palette.php │ ├── items-custom-fields-for-gutenberg.php │ ├── items-disable-gutenberg-blocks.php │ ├── items-easy-blocks-pro.php │ ├── items-easy-blocks.php │ ├── items-editor-blocks.php │ ├── items-editorskit.php │ ├── items-elegant-blocks.php │ ├── items-enable-gutenberg-theme-support.php │ ├── items-fofo-block-editor-customiser.php │ ├── items-ghostkit.php │ ├── items-guten-bubble.php │ ├── items-gutenbee.php │ ├── items-gutenbegone.php │ ├── items-gutenberg-manager.php │ ├── items-gutenberg.php │ ├── items-gutentor.php │ ├── items-kadence-blocks.php │ ├── items-kioken-blocks.php │ ├── items-lazy-blocks.php │ ├── items-otter-blocks.php │ ├── items-placeholder-block.php │ ├── items-potter-kit.php │ ├── items-premium-blocks-for-gutenberg.php │ ├── items-qubely-blocks.php │ ├── items-richtext-toolbar-buttons.php │ ├── items-stackable.php │ ├── items-stag-blocks.php │ ├── items-theme-support-gutenberg.php │ ├── items-ultimate-addons-for-gutenberg.php │ ├── items-ultimate-blocks.php │ ├── items-ultrablocks.php │ ├── items-unregister-gutenberg-blocks.php │ ├── items-wc-email-blocks.php │ ├── items-we-blocks.php │ ├── items-wp-block-ink.php │ ├── items-wp-block-pack.php │ ├── items-wpblocks.php │ └── items-wpbricks.php ├── block-editor │ ├── index.php │ └── items-block-editor.php ├── class-group-plugins.php ├── class-items-cpt-generic.php ├── compatibility │ ├── classicpress.php │ ├── compatibility-manager.php │ ├── deprecated.php │ ├── index.php │ └── plugin-compatibility.php ├── elementor-addons │ ├── index.php │ ├── items-advamentor.php │ ├── items-analog-templates.php │ ├── items-anywhere-elementor.php │ ├── items-archivescode-addons.php │ ├── items-bdthemes-element-pack.php │ ├── items-bdthemes-prime-slider.php │ ├── items-bestfreebie-elementor-icons.php │ ├── items-briefcase-elementor-widgets.php │ ├── items-clever-mega-menu.php │ ├── items-codetic-addons.php │ ├── items-custom-icons-for-elementor.php │ ├── items-debug-elementor.php │ ├── items-dhwc-elementor.php │ ├── items-dynamic-content-for-elementor.php │ ├── items-ele-custom-skin.php │ ├── items-elementor-contact-form-db.php │ ├── items-elementor-forms.php │ ├── items-elementor-white-label-branding.php │ ├── items-elementor-white-label.php │ ├── items-elements-kit.php │ ├── items-elements-plus.php │ ├── items-eleslider.php │ ├── items-essential-paofe.php │ ├── items-exclusive-addons.php │ ├── items-extensions-for-elementor.php │ ├── items-extra-privacy-for-elementor.php │ ├── items-flexible-elementor-panel.php │ ├── items-formentor.php │ ├── items-funnelmentals.php │ ├── items-granular-controls.php │ ├── items-gt3-elementor-photo-gallery.php │ ├── items-happy-addons.php │ ├── items-header-footer-builder.php │ ├── items-ht-builder.php │ ├── items-ht-mega.php │ ├── items-internetcss-google-map-extended-pro.php │ ├── items-internetcss-google-map-extended.php │ ├── items-jetblocks.php │ ├── items-jetblog.php │ ├── items-jetcomparewishlist.php │ ├── items-jetdesignkit.php │ ├── items-jetelements.php │ ├── items-jetengine.php │ ├── items-jetmenu.php │ ├── items-jetpopup.php │ ├── items-jetreviews.php │ ├── items-jetsmartfilters.php │ ├── items-jettabs.php │ ├── items-jetthemecore.php │ ├── items-jettricks.php │ ├── items-jetwidgets.php │ ├── items-jetwoobuilder.php │ ├── items-jetwooproductgallery.php │ ├── items-jetwoowidgets.php │ ├── items-kadence-woocommerce-elementor.php │ ├── items-layouts-for-elementor.php │ ├── items-leap13-premium-addons.php │ ├── items-lenix-elementor-leads-addon.php │ ├── items-livemesh-addons.php │ ├── items-massive-addons-for-elementor.php │ ├── items-maxster-addons.php │ ├── items-metform.php │ ├── items-multidomain-support-elementor.php │ ├── items-namogo-extras.php │ ├── items-natalie.php │ ├── items-opal-megamenu-for-elementor.php │ ├── items-opal-widgets-for-elementor.php │ ├── items-orbit-fox.php │ ├── items-oxilab-addons.php │ ├── items-pdf-generator-for-elementor.php │ ├── items-piotnet-addons.php │ ├── items-popboxes.php │ ├── items-portfolio-for-elementor.php │ ├── items-power-ups-for-elementor.php │ ├── items-powerpack-dwe.php │ ├── items-powerpack-elements-lite.php │ ├── items-powerpack-elements.php │ ├── items-powerpack-wlbfe.php │ ├── items-press-elements.php │ ├── items-pt-elementor.php │ ├── items-rabbitbuilder-js-css.php │ ├── items-revolution-for-elementor.php │ ├── items-rife-elementor-extensions-templates.php │ ├── items-ruvuv-extension-for-elementor.php │ ├── items-sina-extension.php │ ├── items-sizzify-lite.php │ ├── items-sj-elementor-addon.php │ ├── items-smart-fonts-for-elementor.php │ ├── items-social-addons-for-elementor.php │ ├── items-splittest-for-elementor.php │ ├── items-stylepress-for-elementor.php │ ├── items-templementor.php │ ├── items-thepack-addons.php │ ├── items-theplus-addons.php │ ├── items-toolkit-for-elementor.php │ ├── items-total-recipe-generator.php │ ├── items-ultimate-addons-for-elementor.php │ ├── items-unlimited-elements.php │ ├── items-vakka-addons.php │ ├── items-webtechstreet-addons.php │ ├── items-widgetkit-for-elementor.php │ ├── items-woocommerce-pbfe.php │ ├── items-woolentor.php │ ├── items-wpb-elementor-addons.php │ ├── items-wphobby-addons.php │ └── items-wunderwp.php ├── elementor-official │ ├── elementor-functions.php │ ├── elementor-resources.php │ ├── index.php │ ├── items-elementor-core.php │ ├── items-elementor-hello-theme.php │ ├── items-elementor-pro.php │ ├── items-finder-elementor-resources.php │ ├── items-finder-tbex.php │ └── items-layers-for-elementor.php ├── functions-conditionals-external.php ├── functions-conditionals-tweaks.php ├── functions-conditionals.php ├── functions-global-customizer.php ├── functions-global-info.php ├── functions-global.php ├── global-superadmin-menu.php ├── hook-place-addons.php ├── index.php ├── items-dev-mode.php ├── items-edit-content.php ├── items-edit-nav-menus.php ├── items-new-content.php ├── items-plugins-block-editor-addons.php ├── items-plugins-elementor-addons.php ├── items-plugins-forms.php ├── items-plugins-genesis.php ├── items-plugins-sitegroup-elements.php ├── items-plugins-sitegroup-manage-content.php ├── items-plugins-sitegroup-media.php ├── items-plugins-sitegroup-stuff.php ├── items-plugins-sitegroup-tools.php ├── items-plugins.php ├── items-site-group.php ├── items-tbex-plugin.php ├── items-themes-genesis.php ├── items-themes.php ├── items-tools-group.php ├── items-user.php ├── items-web-group.php ├── items-wpabout.php ├── items-wpcomments.php ├── local-dev-environment.php ├── main-item.php ├── plugins-forms │ ├── index.php │ ├── items-advanced-forms.php │ ├── items-arforms.php │ ├── items-bloom.php │ ├── items-buddyforms.php │ ├── items-caldera-forms.php │ ├── items-cfdb.php │ ├── items-contact-form-7.php │ ├── items-contactformx.php │ ├── items-convertplus.php │ ├── items-convertpro.php │ ├── items-everest-forms.php │ ├── items-flo-forms.php │ ├── items-fluent-forms.php │ ├── items-form-maker.php │ ├── items-form-vibes.php │ ├── items-formcraft.php │ ├── items-formidable-forms.php │ ├── items-forminator.php │ ├── items-gravity-forms.php │ ├── items-happyforms.php │ ├── items-html-forms.php │ ├── items-hustle.php │ ├── items-mailchimp-for-wp.php │ ├── items-mailoptin.php │ ├── items-mailpoet-legacy.php │ ├── items-mailpoet.php │ ├── items-mailster.php │ ├── items-ninja-forms.php │ ├── items-optinmonster.php │ ├── items-post-smtp.php │ ├── items-quform.php │ ├── items-torro-forms.php │ ├── items-weforms.php │ ├── items-wp-mail-smtp.php │ └── items-wpforms.php ├── plugins-genesis │ ├── index.php │ ├── items-agentpress-listings.php │ ├── items-blox.php │ ├── items-cobalt-genesis-devkit.php │ ├── items-cobalt-genesis-extender.php │ ├── items-display-featured-image-genesis.php │ ├── items-display-related-posts-genesis.php │ ├── items-easy-genesis.php │ ├── items-genesis-404-page.php │ ├── items-genesis-accessible.php │ ├── items-genesis-author-pro.php │ ├── items-genesis-coming-soon-page.php │ ├── items-genesis-custom-headers.php │ ├── items-genesis-design-palette-pro.php │ ├── items-genesis-extra-settings-transporter.php │ ├── items-genesis-featured-image-header.php │ ├── items-genesis-footer-builder.php │ ├── items-genesis-grid.php │ ├── items-genesis-layout-extras.php │ ├── items-genesis-portfolio-pro.php │ ├── items-genesis-responsive-slider.php │ ├── items-genesis-simple-edits.php │ ├── items-genesis-simple-faq.php │ ├── items-genesis-simple-hooks.php │ ├── items-genesis-simple-share.php │ ├── items-genesis-simple-sidebars.php │ ├── items-genesis-super-customizer.php │ ├── items-genesis-testimonial-slider.php │ └── items-genesis-widgetized-notfound.php ├── plugins-otgs │ ├── index.php │ ├── items-plugins-otgs.php │ ├── items-toolset-access.php │ ├── items-toolset-advanced-export.php │ ├── items-toolset-forms-commerce.php │ ├── items-toolset-forms.php │ ├── items-toolset-framework-installer.php │ ├── items-toolset-layouts.php │ ├── items-toolset-modules.php │ ├── items-toolset-resources.php │ ├── items-toolset-suite.php │ ├── items-toolset-types.php │ ├── items-toolset-views-woocommerce.php │ ├── items-toolset-views.php │ ├── items-wpml-base.php │ ├── items-wpml-cms-nav.php │ ├── items-wpml-media-translation.php │ ├── items-wpml-resources.php │ ├── items-wpml-sticky-links.php │ ├── items-wpml-string-translation.php │ ├── items-wpml-translation-management.php │ ├── items-wpml-woocommerce-multilingual.php │ └── otgs-functions.php ├── plugins │ ├── index.php │ ├── items-404page.php │ ├── items-aceide.php │ ├── items-acf-extended.php │ ├── items-acf.php │ ├── items-activity-log.php │ ├── items-add-from-server.php │ ├── items-advanced-cron-manager.php │ ├── items-advanced-twentyseventeen.php │ ├── items-aiowpm.php │ ├── items-backwpup.php │ ├── items-better-search-replace.php │ ├── items-borlabs-cookie.php │ ├── items-bsf-aiosrs.php │ ├── items-bsf-sidebar-manager.php │ ├── items-cartflows.php │ ├── items-catch-import-export.php │ ├── items-central-color-palette.php │ ├── items-cherry-projects.php │ ├── items-cherry-services-list.php │ ├── items-cherry-team-members.php │ ├── items-cherry-testimonials.php │ ├── items-classic-editor.php │ ├── items-cobalt-extender-pro.php │ ├── items-cobalt-freelancer-devkit.php │ ├── items-cobalt-instant-ide.php │ ├── items-cobalt-themer-pro.php │ ├── items-code-snippets.php │ ├── items-compress-images.php │ ├── items-content-aware-sidebars.php │ ├── items-cool-timeline.php │ ├── items-cpt-faq.php │ ├── items-cpt-generic-type.php │ ├── items-cpt-portfolio.php │ ├── items-ct-church-content.php │ ├── items-custom-css-pro.php │ ├── items-custom-field-suite.php │ ├── items-custom-importer-exporter.php │ ├── items-custom-swatches-iris.php │ ├── items-customize-twentyseventeen.php │ ├── items-customize-twentysixteen.php │ ├── items-customizer-export-import.php │ ├── items-delete-expired-transients.php │ ├── items-delightful-downloads.php │ ├── items-disable-gutenberg.php │ ├── items-dismiss-gutenberg-nag.php │ ├── items-download-monitor.php │ ├── items-duplicator-pro.php │ ├── items-duplicator.php │ ├── items-easy-login-styler.php │ ├── items-easy-updates-manager.php │ ├── items-edd.php │ ├── items-envato-elements-template-kits.php │ ├── items-envira-gallery.php │ ├── items-epic-news-elements.php │ ├── items-error-log-viewer.php │ ├── items-ewww-image-optimizer.php │ ├── items-export-import-menus.php │ ├── items-foogallery.php │ ├── items-front-page-builder.php │ ├── items-github-updater.php │ ├── items-gp-back-to-top.php │ ├── items-gp-elements-disable.php │ ├── items-gp-related-posts.php │ ├── items-gp-social-share.php │ ├── items-gp-tweaks.php │ ├── items-gutenberg-ramp.php │ ├── items-health-check.php │ ├── items-hesham-schema.php │ ├── items-hummingbird.php │ ├── items-iconpress.php │ ├── items-imagify.php │ ├── items-instagram-feed.php │ ├── items-iris-color-picker-enhancer.php │ ├── items-ivory-search.php │ ├── items-jetpack.php │ ├── items-local-development.php │ ├── items-log-deprecated-notices.php │ ├── items-log-viewer.php │ ├── items-login-designer.php │ ├── items-mainwp-child.php │ ├── items-max-mega-menu.php │ ├── items-maxgalleria.php │ ├── items-media-from-ftp.php │ ├── items-members.php │ ├── items-meta-box.php │ ├── items-oceanwp-sticky-header.php │ ├── items-oneclick-demo-import.php │ ├── items-options-for-twentynineteen.php │ ├── items-options-for-twentyseventeen.php │ ├── items-php-code-snippets.php │ ├── items-pithy-templates.php │ ├── items-pods.php │ ├── items-popup-maker.php │ ├── items-qtranslate-xt.php │ ├── items-quadmenu.php │ ├── items-rankmath-instant-indexing.php │ ├── items-rankmath-singles.php │ ├── items-rankmath.php │ ├── items-redirection.php │ ├── items-regenerate-thumbnails.php │ ├── items-safe-redirect-manager.php │ ├── items-search-replace.php │ ├── items-seo-framework.php │ ├── items-seo-redirection.php │ ├── items-seopress.php │ ├── items-sermon-manager.php │ ├── items-shariff.php │ ├── items-shortcoder.php │ ├── items-shortpixel-image-optimizer.php │ ├── items-simple-css.php │ ├── items-simple-custom-css-js.php │ ├── items-simple-custom-css.php │ ├── items-simple-history.php │ ├── items-simple-links.php │ ├── items-simple-urls.php │ ├── items-site-health-manager.php │ ├── items-site-health-tool-manager.php │ ├── items-siteorigin-css.php │ ├── items-smart-slider.php │ ├── items-smush.php │ ├── items-soliloquy-sliders.php │ ├── items-sticky-header-2020.php │ ├── items-stream.php │ ├── items-tablepress.php │ ├── items-testimonial-rotator.php │ ├── items-theme-switcha.php │ ├── items-thirsty-affiliates.php │ ├── items-thrive-comments.php │ ├── items-tm-timeline.php │ ├── items-toolbelt.php │ ├── items-transient-cleaner.php │ ├── items-transients-manager.php │ ├── items-updraftplus.php │ ├── items-user-activity-log.php │ ├── items-we-sidebar-builder.php │ ├── items-widget-importer-exporter.php │ ├── items-widget-options.php │ ├── items-woocommerce.php │ ├── items-wp-color-picker-enhancement.php │ ├── items-wp-crontrol.php │ ├── items-wp-db-migrate.php │ ├── items-wp-document-revisions.php │ ├── items-wp-mobile-menu.php │ ├── items-wp-portfolio.php │ ├── items-wp-schema-pro.php │ ├── items-wp-security-audit-log.php │ ├── items-wp-show-posts.php │ ├── items-wpcore.php │ ├── items-wpmudev-dashboard.php │ ├── items-wpstaging.php │ ├── items-wpsynchro.php │ ├── items-wpvivid.php │ └── items-yoastseo.php ├── smart-tweaks-translations.php ├── smart-tweaks.php ├── string-switcher.php ├── tbex-update-settings.php ├── themes-genesis │ ├── index.php │ ├── items-dynamik-website-builder.php │ ├── items-genesis-academy-pro.php │ ├── items-genesis-agent-focused-pro.php │ ├── items-genesis-agentpress-pro.php │ ├── items-genesis-altitude-pro.php │ ├── items-genesis-aspire-pro.php │ ├── items-genesis-atmosphere-pro.php │ ├── items-genesis-author-pro.php │ ├── items-genesis-authority-pro.php │ ├── items-genesis-boss-pro.php │ ├── items-genesis-breakthrough-pro.php │ ├── items-genesis-brunch-pro.php │ ├── items-genesis-business-pro.php │ ├── items-genesis-cafe-pro.php │ ├── items-genesis-cookd-pro.php │ ├── items-genesis-corporate-pro.php │ ├── items-genesis-course-maker-pro.php │ ├── items-genesis-customizer.php │ ├── items-genesis-daily-dish-pro.php │ ├── items-genesis-digital-pro.php │ ├── items-genesis-divine.php │ ├── items-genesis-essence-pro.php │ ├── items-genesis-executive-pro.php │ ├── items-genesis-foodie-pro.php │ ├── items-genesis-gallery-pro.php │ ├── items-genesis-gbeaver.php │ ├── items-genesis-hello-pro.php │ ├── items-genesis-infinity-pro.php │ ├── items-genesis-jessica.php │ ├── items-genesis-kreativ-pro.php │ ├── items-genesis-lifestyle-pro.php │ ├── items-genesis-magazine-pro.php │ ├── items-genesis-mai-theme-engine.php │ ├── items-genesis-maker-pro.php │ ├── items-genesis-market-theme.php │ ├── items-genesis-metro-pro.php │ ├── items-genesis-monochrome-pro.php │ ├── items-genesis-niche-pro.php │ ├── items-genesis-outfitter-pro.php │ ├── items-genesis-parallax-pro.php │ ├── items-genesis-pretty-chic.php │ ├── items-genesis-pretty-creative.php │ ├── items-genesis-refined-pro.php │ ├── items-genesis-revolution-pro.php │ ├── items-genesis-sample.php │ ├── items-genesis-showcase-pro.php │ ├── items-genesis-slush-pro.php │ ├── items-genesis-smart-passive-income-pro.php │ ├── items-genesis-studio-pro.php │ ├── items-genesis-wellness-pro.php │ └── items-genesis.php ├── themes │ ├── index.php │ ├── items-airi.php │ ├── items-ashe.php │ ├── items-astra.php │ ├── items-atomic-blocks.php │ ├── items-beaver-builder-theme.php │ ├── items-bstone.php │ ├── items-buildwall.php │ ├── items-chaplin.php │ ├── items-coblocks.php │ ├── items-ct-exodus.php │ ├── items-ct-jubilee.php │ ├── items-ct-maranatha.php │ ├── items-ct-resurrect.php │ ├── items-ct-risen.php │ ├── items-ct-saved.php │ ├── items-ctcom-shared.php │ ├── items-customify.php │ ├── items-default-twenty-themes.php │ ├── items-editor-blocks.php │ ├── items-eletheme.php │ ├── items-flexia.php │ ├── items-freelancer.php │ ├── items-futurio.php │ ├── items-generatepress.php │ ├── items-gutenbooster.php │ ├── items-hestia.php │ ├── items-jupiterx.php │ ├── items-kava.php │ ├── items-mesmerize.php │ ├── items-neve.php │ ├── items-oceanwp.php │ ├── items-page-builder-framework.php │ ├── items-phlox.php │ ├── items-primer.php │ ├── items-responsive.php │ ├── items-reykjavik.php │ ├── items-rife.php │ ├── items-rooten.php │ ├── items-sane.php │ ├── items-stackable.php │ ├── items-stag-blocks.php │ ├── items-startwp.php │ ├── items-storefront.php │ ├── items-suki.php │ ├── items-sydney.php │ ├── items-total.php │ ├── items-visual-composer-starter.php │ ├── items-woostify.php │ ├── items-zakra.php │ └── items-zita.php ├── toolbar-styles.php └── tools │ ├── class-show-current-template.php │ ├── dark-mode-automatic.php │ ├── index.php │ └── items-show-current-template.php ├── index.php ├── languages ├── README.md ├── index.php ├── readme.txt ├── toolbar-extras-de_DE.mo ├── toolbar-extras-de_DE.po ├── toolbar-extras-de_DE_formal.mo ├── toolbar-extras-de_DE_formal.po └── toolbar-extras.pot ├── readme.txt ├── toolbar-extras.php └── uninstall.php /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Composer 2 | vendor/**/.git 3 | vendor/ 4 | composer.lock 5 | composer.phar 6 | 7 | # Grunt 8 | node_modules/ 9 | 10 | # macOS 11 | .DS_Store 12 | .idea/ -------------------------------------------------------------------------------- /assets-repos/github-com/tbex-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddw-archive/toolbar-extras/adc9c7a68e7b5a12413739d22a2eaadee6a05f52/assets-repos/github-com/tbex-banner.png -------------------------------------------------------------------------------- /assets-repos/wordpress-org/banner-1544x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddw-archive/toolbar-extras/adc9c7a68e7b5a12413739d22a2eaadee6a05f52/assets-repos/wordpress-org/banner-1544x500.png -------------------------------------------------------------------------------- /assets-repos/wordpress-org/banner-772x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddw-archive/toolbar-extras/adc9c7a68e7b5a12413739d22a2eaadee6a05f52/assets-repos/wordpress-org/banner-772x250.png -------------------------------------------------------------------------------- /assets-repos/wordpress-org/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddw-archive/toolbar-extras/adc9c7a68e7b5a12413739d22a2eaadee6a05f52/assets-repos/wordpress-org/icon-128x128.png -------------------------------------------------------------------------------- /assets-repos/wordpress-org/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddw-archive/toolbar-extras/adc9c7a68e7b5a12413739d22a2eaadee6a05f52/assets-repos/wordpress-org/icon-256x256.png -------------------------------------------------------------------------------- /assets-repos/wordpress-org/index.php: -------------------------------------------------------------------------------- 1 | ul { 15 | display: -ms-flexbox; 16 | display: flex; 17 | flex-wrap: nowrap; 18 | -ms-flex-wrap: nowrap; 19 | min-width: 0 !important; 20 | } 21 | 22 | #wpadminbar #wp-admin-bar-top-secondary { 23 | flex-direction: row-reverse; 24 | -ms-flex-direction: row-reverse; 25 | } 26 | 27 | #wpadminbar .quicklinks > ul > li { 28 | float: none !important; 29 | } 30 | 31 | #wp-admin-bar-root-default > li, 32 | #wp-admin-bar-top-secondary > li, 33 | #wp-admin-bar-root-default > li > .ab-item, 34 | #wp-admin-bar-top-secondary > li > .ab-item { 35 | white-space: nowrap; 36 | text-overflow: ellipsis; 37 | min-width: 0 !important; 38 | } 39 | 40 | #wp-admin-bar-root-default > li > .ab-item, 41 | #wp-admin-bar-top-secondary > li > .ab-item { 42 | overflow: hidden; 43 | } 44 | 45 | #wp-admin-bar-user-info > .ab-item { 46 | overflow: initial !important; 47 | } 48 | 49 | #wp-admin-bar-root-default > li > .ab-item .ab-label, 50 | #wp-admin-bar-top-secondary > li > .ab-item .display-name { 51 | float: none; 52 | display: inline; 53 | } 54 | 55 | } -------------------------------------------------------------------------------- /assets/images/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | toolbar-extras-iconsvg 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | Toolbar 16 | Extras 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /assets/index.php: -------------------------------------------------------------------------------- 1 | =5.6.20" 21 | } 22 | } -------------------------------------------------------------------------------- /credits.txt: -------------------------------------------------------------------------------- 1 | == Credits == 2 | 3 | 4 | = Class "DDWlib Plugin Installer Recommendations" (PLIR) = 5 | 6 | @author David Decker - DECKERWEB 7 | @license GPL-2.0-or-later 8 | @link https://github.com/deckerweb/ddwlib-plugin-installer-recommendations 9 | 10 | 11 | 12 | = Class "Persist Admin notices Dismissal" (PAnD) = 13 | 14 | @author Agbonghama Collins and Andy Fragen 15 | @license GPL-2.0-or-later 16 | @link https://github.com/collizo4sky/persist-admin-notices-dismissal 17 | @link https://w3guy.com/wordpress-admin-notices-dismissible/ 18 | 19 | 20 | 21 | = Class "Astra Notices" = 22 | 23 | @author Brainstorm Force 24 | @license GPL-2.0-or-later 25 | @link https://www.brainstormforce.com/ 26 | @link https://github.com/brainstormforce/astra 27 | 28 | 29 | 30 | = Class "My Plugin Manager" = 31 | 32 | @author Theme Blvd and Jason Bobich 33 | @license GPL-2.0-or-later 34 | @link http://mypluginmanager.com 35 | @link https://github.com/themeblvd/my-plugin-manager 36 | 37 | 38 | 39 | = jQuery Plugin, JavaScript "Dashicons Picker" = 40 | 41 | @author Brad Vincent 42 | @license GPL-2.0-or-later 43 | @link https://github.com/bradvin/dashicons-picker 44 | 45 | 46 | 47 | = Admin Settings JavaScript * 48 | 49 | @author StudioPress 50 | @license GPL-2.0-or-later 51 | @link https://www.studiopress.com/ 52 | 53 | 54 | 55 | = Code for frontend Toolbar color = 56 | 57 | @author Daniel James 58 | @license GPLv3 59 | @link https://github.com/danieltj27/Style-the-Toolbar -------------------------------------------------------------------------------- /includes/admin/classes/astra-notices/index.php: -------------------------------------------------------------------------------- 1 | %s', 31 | __( 'About this Plugin - Values, Principles', 'toolbar-extras' ) 32 | ); 33 | 34 | $output .= sprintf( 35 | '

' . __( 'The whole idea is to use the WordPress Toolbar more - and for more typical tasks. Just because it is well suited for that. It is one central place from where you can control a lot of stuff. It is only a small bar but very powerful and always there.', 'toolbar-extras' ) . '

' 36 | ); 37 | 38 | $output .= '

' . __( 'The first underlying principle of Toolbar Extras is to provide the same items and resources at the exact same place on the Admin AND the Frontend Toolbar. This is really handy as over time you establish a habit and can control your work more "blindly".', 'toolbar-extras' ) . '

'; 39 | 40 | $output .= '

' . __( 'Another basic principle of Toolbar Extras is to provide as much integrations as possible and relevant - out of the box. Installing and activating the plugin and then continue with your work and your tasks. Of course there are dozens of settings when you need them but they won\'t get in your way. Period.', 'toolbar-extras' ) . '

'; 41 | 42 | $output .= '

' . __( 'My pleasure is to support the daily work, routines and tasks of Site Builders, Webmasters and Developers. This is also the main purpose of Toolbar Extras - naturally.', 'toolbar-extras' ) . '

'; 43 | 44 | echo wpautop( $output ); 45 | 46 | ddw_tbex_help_tab_content_footer( 'echo' ); 47 | 48 | } // end function 49 | -------------------------------------------------------------------------------- /includes/admin/views/help-content-header.php: -------------------------------------------------------------------------------- 1 | %1$s: %2$s v%3$s', 34 | __( 'Plugin', 'toolbar-extras' ), 35 | ddw_tbex_string_toolbar_extras(), 36 | TBEX_PLUGIN_VERSION 37 | ); 38 | 39 | /** Optional echo header */ 40 | if ( 'echo' === sanitize_key( $render ) ) { 41 | echo $header; 42 | } 43 | 44 | /** Return header */ 45 | return $header; 46 | 47 | } // end function 48 | -------------------------------------------------------------------------------- /includes/admin/views/index.php: -------------------------------------------------------------------------------- 1 | 35 |
36 | 37 |

38 |

%3$s', 40 | ddw_tbex_get_info_url( 'url_video_tour' ), 41 | esc_html__( 'Toolbar Extras Plugin - the Video Tour', 'toolbar-extras' ), 42 | esc_attr__( 'See the Video Tour', 'toolbar-extras' ) 43 | ); ?>

44 |

45 |

46 |

()

47 |
48 | '#057f99', 29 | 'name' => __( 'ClassicPress Green', 'toolbar-extras' ), 30 | ); 31 | 32 | return $color_items; 33 | 34 | } // end function 35 | -------------------------------------------------------------------------------- /includes/compatibility/compatibility-manager.php: -------------------------------------------------------------------------------- 1 | remove_node( 'ddw-mstba-new-navmenu' ); 54 | $GLOBALS[ 'wp_admin_bar' ]->remove_node( 'ddw-mstba-newcontent_backwpup_add' ); 55 | 56 | /** Optionally remove MSTBA's Site Extend Group */ 57 | if ( ddw_tbex_use_tweak_mstba_siteextgroup() ) { 58 | $GLOBALS[ 'wp_admin_bar' ]->remove_node( 'ddw-mstba-siteextgroup' ); 59 | } 60 | 61 | } // end function 62 | -------------------------------------------------------------------------------- /includes/elementor-addons/index.php: -------------------------------------------------------------------------------- 1 | labels->singular_name ) 39 | ); 40 | 41 | $debug_title_attr = sprintf( 42 | /* translators: %s - singular name of post type */ 43 | esc_attr__( 'View Elementor Debug Info for this %s - in JSON format', 'toolbar-extras' ), 44 | esc_html( $post_type->labels->singular_name ) 45 | ); 46 | 47 | $GLOBALS[ 'wp_admin_bar' ]->add_node( 48 | array( 49 | 'id' => 'dm-debug-elementor', 50 | 'parent' => 'elementor_edit_page', 51 | 'title' => ddw_tbex_item_title_with_icon( $debug_title ), 52 | 'href' => esc_url( add_query_arg( 'feed', 'elementor', get_permalink( get_the_ID() ) ) ), 53 | 'meta' => array( 54 | 'rel' => ddw_tbex_meta_rel(), 55 | 'target' => ddw_tbex_meta_target(), 56 | 'title' => $debug_title_attr, 57 | ) 58 | ) 59 | ); 60 | 61 | } // end function 62 | -------------------------------------------------------------------------------- /includes/elementor-official/index.php: -------------------------------------------------------------------------------- 1 | add_node( 31 | array( 32 | 'id' => 'tbex-addons', 33 | 'parent' => 'group-pagebuilder-options', 34 | 'title' => esc_attr__( 'Add-Ons', 'toolbar-extras' ), 35 | 'href' => '', 36 | 'meta' => array( 37 | 'target' => '', 38 | 'title' => esc_attr__( 'Elements and Options from Add-On Plugins', 'toolbar-extras' ), 39 | ) 40 | ) 41 | ); 42 | 43 | } // end if 44 | 45 | } // end function 46 | -------------------------------------------------------------------------------- /includes/index.php: -------------------------------------------------------------------------------- 1 | add_group( 32 | array( 33 | 'id' => 'tbex-toolsgroup-privacy', 34 | 'parent' => ddw_tbex_parent_id_tools_group(), 35 | ) 36 | ); 37 | 38 | do_action( 'tbex_after_tools_group_privacy', $admin_bar ); 39 | 40 | 41 | /** Group: GDPR ... */ 42 | $admin_bar->add_group( 43 | array( 44 | 'id' => 'tbex-toolsgroup-gdpr', 45 | 'parent' => ddw_tbex_parent_id_tools_group(), 46 | ) 47 | ); 48 | 49 | do_action( 'tbex_after_tools_group_gdpr', $admin_bar ); 50 | 51 | /** Group: Site Health ... */ 52 | $admin_bar->add_group( 53 | array( 54 | 'id' => 'tbex-toolsgroup-sitehealth', 55 | 'parent' => ddw_tbex_parent_id_tools_group(), 56 | ) 57 | ); 58 | 59 | do_action( 'tbex_after_tools_group_sitehealth', $admin_bar ); 60 | 61 | /** Group: Add-Ons ... */ 62 | $admin_bar->add_group( 63 | array( 64 | 'id' => 'tbex-toolsgroup-addons', 65 | 'parent' => ddw_tbex_parent_id_tools_group(), 66 | ) 67 | ); 68 | 69 | do_action( 'tbex_after_tools_group_addons', $admin_bar ); 70 | 71 | } // end function 72 | -------------------------------------------------------------------------------- /includes/plugins-forms/index.php: -------------------------------------------------------------------------------- 1 | 'post', 32 | 'numberposts' => 1, 33 | 'post_status' => 'publish', 34 | 'offset' => 0, 35 | ); 36 | 37 | $latest = wp_get_recent_posts( $params ); 38 | $maybe_latest_post_url = ! isset( $latest[ '0' ] ) ? '' : esc_url( get_permalink( $latest[ '0' ][ 'ID' ] ) ); 39 | 40 | wp_reset_query(); 41 | 42 | /** Add Toolbar item */ 43 | $admin_bar->add_node( 44 | array( 45 | 'id' => 'ao-drpg-plugin', 46 | 'parent' => 'theme-creative-customize', 47 | /* translators: Autofocus panel in the Customizer */ 48 | 'title' => esc_attr__( 'Display Related Posts', 'toolbar-extras' ), 49 | 'href' => ddw_tbex_customizer_focus( 'section', 'display_related_posts_for_genesis', $maybe_latest_post_url ), 50 | 'meta' => array( 51 | 'target' => ddw_tbex_meta_target(), 52 | 'title' => ddw_tbex_string_customize_attr( __( 'Display Related Posts', 'toolbar-extras' ) ), 53 | ) 54 | ) 55 | ); 56 | 57 | } // end function 58 | -------------------------------------------------------------------------------- /includes/plugins-genesis/items-genesis-404-page.php: -------------------------------------------------------------------------------- 1 | add_group( 27 | array( 28 | 'id' => 'be-404page', 29 | 'parent' => 'group-genesisplugins-creative', 30 | ) 31 | ); 32 | 33 | /** Settings page */ 34 | $admin_bar->add_node( 35 | array( 36 | 'id' => 'be-404page-edit', 37 | 'parent' => 'be-404page', 38 | 'title' => esc_attr__( 'Edit 404 Page', 'toolbar-extras' ), 39 | 'href' => esc_url( admin_url( 'admin.php?page=genesis-404' ) ), 40 | 'meta' => array( 41 | 'target' => '', 42 | 'title' => esc_attr__( 'Edit 404 Page', 'toolbar-extras' ), 43 | ) 44 | ) 45 | ); 46 | 47 | /** Live testing */ 48 | $admin_bar->add_node( 49 | array( 50 | 'id' => 'be-404page-live', 51 | 'parent' => 'be-404page', 52 | 'title' => esc_attr__( '404 Live Test', 'toolbar-extras' ), 53 | 'href' => esc_url( get_site_url() . '/404page-test-' . md5( mt_rand() ) ), 54 | 'meta' => array( 55 | 'target' => ddw_tbex_meta_target(), 56 | 'title' => esc_attr__( '404 Live Test', 'toolbar-extras' ), 57 | ) 58 | ) 59 | ); 60 | 61 | } // end function 62 | -------------------------------------------------------------------------------- /includes/plugins-genesis/items-genesis-accessible.php: -------------------------------------------------------------------------------- 1 | add_node( 27 | array( 28 | 'id' => 'genesis-accessible', 29 | 'parent' => 'group-genesisplugins-creative', 30 | 'title' => esc_attr__( 'Genesis Accessible', 'toolbar-extras' ), 31 | 'href' => esc_url( admin_url( 'admin.php?page=genesis-accessible' ) ), 32 | 'meta' => array( 33 | 'target' => '', 34 | 'title' => esc_attr__( 'Genesis Accessible', 'toolbar-extras' ), 35 | ) 36 | ) 37 | ); 38 | 39 | } // end function 40 | -------------------------------------------------------------------------------- /includes/plugins-genesis/items-genesis-coming-soon-page.php: -------------------------------------------------------------------------------- 1 | add_group( 29 | array( 30 | 'id' => 'gcs-page', 31 | 'parent' => 'group-genesisplugins-creative', 32 | ) 33 | ); 34 | 35 | $gcsp_settings = get_option( 'gcs-settings' ); 36 | $gcsp_status = $gcsp_settings[ 'status' ]; 37 | $page_title = sprintf( 38 | /* translators: %s - Status of page, "Coming Soon" or "Maintenance" */ 39 | esc_attr__( '%s Page', 'toolbar-extras' ), 40 | ( 'maintenance' === $gcsp_status ) ? __( 'Maintenance Mode', 'toolbar-extras' ) : __( 'Coming Soon', 'toolbar-extras' ) 41 | ); 42 | 43 | /** Settings page */ 44 | $admin_bar->add_node( 45 | array( 46 | 'id' => 'gcs-page-edit', 47 | 'parent' => 'gcs-page', 48 | 'title' => $page_title, 49 | 'href' => esc_url( admin_url( 'admin.php?page=genesis-coming-soon' ) ), 50 | 'meta' => array( 51 | 'target' => '', 52 | 'title' => $page_title, 53 | ) 54 | ) 55 | ); 56 | 57 | /** Live testing */ 58 | $admin_bar->add_node( 59 | array( 60 | 'id' => 'gcs-page-live', 61 | 'parent' => 'gcs-page', 62 | 'title' => esc_attr__( 'Live Test', 'toolbar-extras' ), 63 | 'href' => esc_url( get_site_url() . '/?gcs_preview=true' ), 64 | 'meta' => array( 65 | 'target' => ddw_tbex_meta_target(), 66 | 'title' => esc_attr__( 'Live Test', 'toolbar-extras' ), 67 | ) 68 | ) 69 | ); 70 | 71 | } // end function 72 | -------------------------------------------------------------------------------- /includes/plugins-genesis/items-genesis-custom-headers.php: -------------------------------------------------------------------------------- 1 | add_node( 27 | array( 28 | 'id' => 'genesis-custom-headers', 29 | 'parent' => 'group-genesisplugins-creative', 30 | 'title' => esc_attr__( 'Custom Headers', 'toolbar-extras' ), 31 | 'href' => esc_url( admin_url( 'themes.php?page=genesis-custom-header' ) ), 32 | 'meta' => array( 33 | 'target' => '', 34 | 'title' => esc_attr__( 'Genesis Custom Headers', 'toolbar-extras' ), 35 | ) 36 | ) 37 | ); 38 | 39 | } // end function 40 | -------------------------------------------------------------------------------- /includes/plugins-genesis/items-genesis-extra-settings-transporter.php: -------------------------------------------------------------------------------- 1 | add_node( 32 | array( 33 | 'id' => 'genesis-extra-settings-transporter', 34 | 'parent' => 'group-genesisplugins-creative', 35 | 'title' => esc_attr__( 'Extra Settings Transporter', 'toolbar-extras' ), 36 | 'href' => esc_url( admin_url( 'admin.php?page=genesis-import-export' ) ), 37 | 'meta' => array( 38 | 'target' => '', 39 | 'title' => esc_attr__( 'Genesis Extra Settings Transporter', 'toolbar-extras' ), 40 | ) 41 | ) 42 | ); 43 | 44 | } // end function 45 | -------------------------------------------------------------------------------- /includes/plugins-genesis/items-genesis-featured-image-header.php: -------------------------------------------------------------------------------- 1 | add_node( 27 | array( 28 | 'id' => 'genesis-featuredimg-header', 29 | 'parent' => 'group-genesisplugins-creative', 30 | 'title' => esc_attr__( 'Featured Image Header', 'toolbar-extras' ), 31 | 'href' => esc_url( admin_url( 'admin.php?page=gfih-settings' ) ), 32 | 'meta' => array( 33 | 'target' => '', 34 | 'title' => esc_attr__( 'Genesis Featured Image Header', 'toolbar-extras' ), 35 | ) 36 | ) 37 | ); 38 | 39 | } // end function 40 | -------------------------------------------------------------------------------- /includes/plugins-genesis/items-genesis-footer-builder.php: -------------------------------------------------------------------------------- 1 | add_node( 27 | array( 28 | 'id' => 'genesis-footer-builder', 29 | 'parent' => 'group-genesisplugins-creative', 30 | 'title' => esc_attr__( 'Footer Builder', 'toolbar-extras' ), 31 | 'href' => esc_url( admin_url( 'admin.php?page=genesis-footer-builder' ) ), 32 | 'meta' => array( 33 | 'target' => '', 34 | 'title' => esc_attr__( 'Genesis Footer Builder', 'toolbar-extras' ), 35 | ) 36 | ) 37 | ); 38 | 39 | } // end function 40 | -------------------------------------------------------------------------------- /includes/plugins-genesis/items-genesis-grid.php: -------------------------------------------------------------------------------- 1 | add_node( 27 | array( 28 | 'id' => 'genesis-grid', 29 | 'parent' => 'group-genesisplugins-creative', 30 | 'title' => esc_attr__( 'Grid Settings', 'toolbar-extras' ), 31 | 'href' => esc_url( admin_url( 'admin.php?page=genesis-grid' ) ), 32 | 'meta' => array( 33 | 'target' => '', 34 | 'title' => esc_attr__( 'Genesis Grid Settings', 'toolbar-extras' ), 35 | ) 36 | ) 37 | ); 38 | 39 | } // end function 40 | -------------------------------------------------------------------------------- /includes/plugins-genesis/items-genesis-layout-extras.php: -------------------------------------------------------------------------------- 1 | add_node( 27 | array( 28 | 'id' => 'genesis-layout-extras', 29 | 'parent' => 'group-genesisplugins-creative', 30 | 'title' => esc_attr__( 'Layout Extras', 'toolbar-extras' ), 31 | 'href' => esc_url( admin_url( 'admin.php?page=gle-layout-extras' ) ), 32 | 'meta' => array( 33 | 'target' => '', 34 | 'title' => esc_attr__( 'Genesis Layout Extras', 'toolbar-extras' ), 35 | ) 36 | ) 37 | ); 38 | 39 | } // end function 40 | -------------------------------------------------------------------------------- /includes/plugins-genesis/items-genesis-responsive-slider.php: -------------------------------------------------------------------------------- 1 | add_node( 27 | array( 28 | 'id' => 'genesis-responsive-slider', 29 | 'parent' => 'group-genesisplugins-creative', 30 | 'title' => esc_attr__( 'Responsive Slider', 'toolbar-extras' ), 31 | 'href' => esc_url( admin_url( 'admin.php?page=genesis_responsive_slider' ) ), 32 | 'meta' => array( 33 | 'target' => '', 34 | 'title' => esc_attr__( 'Genesis Responsive Slider', 'toolbar-extras' ), 35 | ) 36 | ) 37 | ); 38 | 39 | } // end function 40 | -------------------------------------------------------------------------------- /includes/plugins-genesis/items-genesis-simple-edits.php: -------------------------------------------------------------------------------- 1 | add_node( 27 | array( 28 | 'id' => 'genesis-simple-edits', 29 | 'parent' => 'group-genesisplugins-creative', 30 | 'title' => esc_attr__( 'Simple Edits', 'toolbar-extras' ), 31 | 'href' => esc_url( admin_url( 'admin.php?page=genesis-simple-edits' ) ), 32 | 'meta' => array( 33 | 'target' => '', 34 | 'title' => esc_attr__( 'Genesis Simple Edits for Footer and Entry Meta', 'toolbar-extras' ), 35 | ) 36 | ) 37 | ); 38 | 39 | } // end function 40 | -------------------------------------------------------------------------------- /includes/plugins-genesis/items-genesis-simple-hooks.php: -------------------------------------------------------------------------------- 1 | add_node( 27 | array( 28 | 'id' => 'genesis-simple-hooks', 29 | 'parent' => 'group-genesisplugins-creative', 30 | 'title' => esc_attr__( 'Simple Hooks', 'toolbar-extras' ), 31 | 'href' => esc_url( admin_url( 'admin.php?page=simplehooks' ) ), 32 | 'meta' => array( 33 | 'target' => '', 34 | 'title' => esc_attr__( 'Genesis Hook Locations', 'toolbar-extras' ), 35 | ) 36 | ) 37 | ); 38 | 39 | } // end function 40 | -------------------------------------------------------------------------------- /includes/plugins-genesis/items-genesis-simple-share.php: -------------------------------------------------------------------------------- 1 | add_node( 27 | array( 28 | 'id' => 'genesis-simple-share', 29 | 'parent' => 'group-genesisplugins-creative', 30 | 'title' => esc_attr__( 'Simple Share', 'toolbar-extras' ), 31 | 'href' => esc_url( admin_url( 'admin.php?page=genesis_simple_share_settings' ) ), 32 | 'meta' => array( 33 | 'target' => '', 34 | 'title' => esc_attr__( 'Genesis Simple Share', 'toolbar-extras' ), 35 | ) 36 | ) 37 | ); 38 | 39 | } // end function 40 | -------------------------------------------------------------------------------- /includes/plugins-genesis/items-genesis-simple-sidebars.php: -------------------------------------------------------------------------------- 1 | add_node( 27 | array( 28 | 'id' => 'genesis-simple-sidebars', 29 | 'parent' => 'group-genesisplugins-creative', 30 | 'title' => esc_attr__( 'Simple Sidebars', 'toolbar-extras' ), 31 | 'href' => esc_url( admin_url( 'admin.php?page=simple-sidebars' ) ), 32 | 'meta' => array( 33 | 'target' => '', 34 | 'title' => esc_attr__( 'Manage Genesis Sidebars', 'toolbar-extras' ), 35 | ) 36 | ) 37 | ); 38 | 39 | /** For: Manage Widgets */ 40 | $admin_bar->add_node( 41 | array( 42 | 'id' => 'gen-simple-sidebars', 43 | 'parent' => 'wpwidgets', 44 | 'title' => esc_attr__( 'Simple Sidebars', 'toolbar-extras' ), 45 | 'href' => esc_url( admin_url( 'admin.php?page=simple-sidebars' ) ), 46 | 'meta' => array( 47 | 'target' => '', 48 | 'title' => esc_attr__( 'Manage Genesis Sidebars', 'toolbar-extras' ), 49 | ) 50 | ) 51 | ); 52 | 53 | } // end function 54 | -------------------------------------------------------------------------------- /includes/plugins-otgs/index.php: -------------------------------------------------------------------------------- 1 | add_node( 27 | array( 28 | 'id' => 'toolset-advanced-export', 29 | 'parent' => 'toolset-suite-exportimport', 30 | 'title' => esc_attr__( 'Theme (TBT)', 'toolbar-extras' ), 31 | 'href' => esc_url( admin_url( 'admin.php?page=toolset-export-import&tab=toolset_advanced_export' ) ), 32 | 'meta' => array( 33 | 'target' => '', 34 | 'title' => esc_attr__( 'Theme (TBT) - Toolset Advanced Export', 'toolbar-extras' ), 35 | ) 36 | ) 37 | ); 38 | 39 | } // end function 40 | -------------------------------------------------------------------------------- /includes/plugins-otgs/items-toolset-forms-commerce.php: -------------------------------------------------------------------------------- 1 | add_node( 27 | array( 28 | 'id' => 'toolset-forms-commerce', 29 | 'parent' => 'toolset-forms', 30 | 'title' => esc_attr__( 'Toolset Forms Commerce', 'toolbar-extras' ), 31 | 'href' => esc_url( admin_url( 'admin.php?page=CRED_Commerce' ) ), 32 | 'meta' => array( 33 | 'target' => '', 34 | 'title' => 'Toolset: ' . esc_attr__( 'Forms Commerce', 'toolbar-extras' ), 35 | ) 36 | ) 37 | ); 38 | 39 | } // end function 40 | -------------------------------------------------------------------------------- /includes/plugins-otgs/items-toolset-framework-installer.php: -------------------------------------------------------------------------------- 1 | add_node( 27 | array( 28 | 'id' => 'toolset-reference-sites', 29 | 'parent' => 'group-toolset-options', 30 | 'title' => esc_attr__( 'Install Reference Sites', 'toolbar-extras' ), 31 | 'href' => esc_url( admin_url( 'admin.php?page=manage-refsites' ) ), 32 | 'meta' => array( 33 | 'target' => '', 34 | 'title' => esc_attr__( 'Toolset Framework Installer', 'toolbar-extras' ) . ': ' . esc_attr__( 'Reference Sites', 'toolbar-extras' ), 35 | ) 36 | ) 37 | ); 38 | 39 | } // end function 40 | -------------------------------------------------------------------------------- /includes/plugins-otgs/items-toolset-views-woocommerce.php: -------------------------------------------------------------------------------- 1 | add_node( 28 | array( 29 | 'id' => 'toolset-views-woocommerce', 30 | 'parent' => 'toolset-views', 31 | 'title' => esc_attr__( 'WooCommerce Views', 'toolbar-extras' ), 32 | 'href' => esc_url( admin_url( 'admin.php?page=wpv_wc_views' ) ), 33 | 'meta' => array( 34 | 'target' => '', 35 | 'title' => 'Toolset: ' . esc_attr__( 'WooCommerce Views', 'toolbar-extras' ), 36 | ) 37 | ) 38 | ); 39 | 40 | /** Views: Export/ Import */ 41 | $admin_bar->add_node( 42 | array( 43 | 'id' => 'toolset-views-exportimport-woocommerce-views', 44 | 'parent' => 'toolset-suite-exportimport', 45 | 'title' => esc_attr__( 'WooCommerce Views', 'toolbar-extras' ), 46 | 'href' => esc_url( admin_url( 'admin.php?page=toolset-export-import&tab=wcviews_export_import' ) ), 47 | 'meta' => array( 48 | 'target' => '', 49 | 'title' => esc_attr__( 'WooCommerce Views', 'toolbar-extras' ), 50 | ) 51 | ) 52 | ); 53 | 54 | } // end function 55 | -------------------------------------------------------------------------------- /includes/plugins-otgs/items-wpml-cms-nav.php: -------------------------------------------------------------------------------- 1 | add_node( 27 | array( 28 | 'id' => 'wpml-suite-wpelements-cms-nav', 29 | 'parent' => 'wpml-suite-wpelements', 30 | 'title' => esc_attr__( 'CMS Navigation', 'toolbar-extras' ), 31 | 'href' => esc_url( admin_url( 'admin.php?page=wpml-cms-nav/menu/navigation.php' ) ), 32 | 'meta' => array( 33 | 'target' => '', 34 | 'title' => esc_attr__( 'CMS Navigation', 'toolbar-extras' ), 35 | ) 36 | ) 37 | ); 38 | 39 | } // end function 40 | -------------------------------------------------------------------------------- /includes/plugins-otgs/items-wpml-media-translation.php: -------------------------------------------------------------------------------- 1 | add_node( 27 | array( 28 | 'id' => 'wpml-suite-wpelements-media', 29 | 'parent' => 'wpml-suite-wpelements', 30 | 'title' => esc_attr__( 'Media Translation', 'toolbar-extras' ), 31 | 'href' => esc_url( admin_url( 'admin.php?page=wpml-media' ) ), 32 | 'meta' => array( 33 | 'target' => '', 34 | 'title' => esc_attr__( 'Media Translation', 'toolbar-extras' ), 35 | ) 36 | ) 37 | ); 38 | 39 | } // end function 40 | -------------------------------------------------------------------------------- /includes/plugins-otgs/items-wpml-sticky-links.php: -------------------------------------------------------------------------------- 1 | add_node( 27 | array( 28 | 'id' => 'wpml-suite-wpelements-sticky-links', 29 | 'parent' => 'wpml-suite-wpelements', 30 | 'title' => esc_attr__( 'Sticky Links', 'toolbar-extras' ), 31 | 'href' => esc_url( admin_url( 'admin.php?page=wpml-sticky-links' ) ), 32 | 'meta' => array( 33 | 'target' => '', 34 | 'title' => esc_attr__( 'Sticky Links', 'toolbar-extras' ), 35 | ) 36 | ) 37 | ); 38 | 39 | } // end function 40 | -------------------------------------------------------------------------------- /includes/plugins-otgs/items-wpml-string-translation.php: -------------------------------------------------------------------------------- 1 | add_node( 27 | array( 28 | 'id' => 'wpml-suite-strings', 29 | 'parent' => 'group-wpml-wpproducts', 30 | 'title' => esc_attr__( 'String Translation', 'toolbar-extras' ), 31 | 'href' => esc_url( admin_url( 'admin.php?page=wpml-string-translation/menu/string-translation.php' ) ), 32 | 'meta' => array( 33 | 'target' => '', 34 | 'title' => esc_attr__( 'String Translation', 'toolbar-extras' ), 35 | ) 36 | ) 37 | ); 38 | 39 | } // end function 40 | -------------------------------------------------------------------------------- /includes/plugins/index.php: -------------------------------------------------------------------------------- 1 | add_group( 29 | array( 30 | 'id' => 'pr-404page', 31 | 'parent' => 'theme-creative', 32 | ) 33 | ); 34 | 35 | $pr_404page = get_option( '404page_page_id' ); 36 | 37 | $admin_bar->add_node( 38 | array( 39 | 'id' => 'pr-404page-edit', 40 | 'parent' => 'pr-404page', 41 | 'title' => esc_attr__( 'Edit 404 Page', 'toolbar-extras' ), 42 | 'href' => get_edit_post_link( absint( $pr_404page ) ), 43 | 'meta' => array( 44 | 'target' => '', 45 | 'title' => esc_attr__( 'Edit 404 Page', 'toolbar-extras' ), 46 | ) 47 | ) 48 | ); 49 | 50 | $admin_bar->add_node( 51 | array( 52 | 'id' => 'pr-404page-live', 53 | 'parent' => 'pr-404page', 54 | 'title' => esc_attr__( '404 Live Test', 'toolbar-extras' ), 55 | 'href' => esc_url( get_site_url() . '/404page-test-' . md5( mt_rand() ) ), 56 | 'meta' => array( 57 | 'target' => ddw_tbex_meta_target(), 58 | 'title' => esc_attr__( '404 Live Test', 'toolbar-extras' ), 59 | ) 60 | ) 61 | ); 62 | 63 | $admin_bar->add_node( 64 | array( 65 | 'id' => 'pr-404page-settings', 66 | 'parent' => 'pr-404page', 67 | 'title' => esc_attr__( '404 Page Settings', 'toolbar-extras' ), 68 | 'href' => esc_url( admin_url( 'themes.php?page=404pagesettings' ) ), 69 | 'meta' => array( 70 | 'target' => '', 71 | 'title' => esc_attr__( '404 Page Settings', 'toolbar-extras' ), 72 | ) 73 | ) 74 | ); 75 | 76 | } // end function 77 | -------------------------------------------------------------------------------- /includes/plugins/items-aceide.php: -------------------------------------------------------------------------------- 1 | add_group( 30 | array( 31 | 'id' => 'group-aceide', 32 | 'parent' => 'rapid-dev', 33 | ) 34 | ); 35 | 36 | $admin_bar->add_node( 37 | array( 38 | 'id' => 'aceide', 39 | 'parent' => 'group-aceide', 40 | 'title' => esc_attr__( 'AceIDE', 'toolbar-extras' ), 41 | 'href' => esc_url( admin_url( 'admin.php?page=aceide' ) ), 42 | 'meta' => array( 43 | 'rel' => ddw_tbex_meta_rel(), 44 | 'target' => ddw_tbex_meta_target(), 45 | 'title' => esc_attr__( 'AceIDE (Code Editor)', 'toolbar-extras' ), 46 | ) 47 | ) 48 | ); 49 | 50 | } // end function 51 | -------------------------------------------------------------------------------- /includes/plugins/items-add-from-server.php: -------------------------------------------------------------------------------- 1 | add_group( 29 | array( 30 | 'id' => 'group-addfromserver', 31 | 'parent' => 'manage-content-media', 32 | ) 33 | ); 34 | 35 | $admin_bar->add_node( 36 | array( 37 | 'id' => 'media-addfromserver', 38 | 'parent' => 'group-addfromserver', 39 | 'title' => esc_attr__( 'Add From Server', 'toolbar-extras' ), 40 | 'href' => esc_url( admin_url( 'upload.php?page=add-from-server' ) ), 41 | 'meta' => array( 42 | 'target' => '', 43 | 'title' => esc_attr__( 'Add From Server', 'toolbar-extras' ), 44 | ) 45 | ) 46 | ); 47 | 48 | $admin_bar->add_node( 49 | array( 50 | 'id' => 'media-addfromserver-settings', 51 | 'parent' => 'group-addfromserver', 52 | 'title' => esc_attr__( 'Settings', 'toolbar-extras' ), 53 | 'href' => esc_url( admin_url( 'options-general.php?page=add-from-server-settings' ) ), 54 | 'meta' => array( 55 | 'target' => '', 56 | 'title' => esc_attr__( 'Settings', 'toolbar-extras' ), 57 | ) 58 | ) 59 | ); 60 | 61 | /** For: New Content */ 62 | if ( ddw_tbex_display_items_new_content() ) { 63 | 64 | $admin_bar->add_node( 65 | array( 66 | 'id' => 'tbex-addfromserver', 67 | 'parent' => 'new-media', 68 | 'title' => esc_attr_x( 'Add From Server', 'Toolbar New Content section', 'toolbar-extras' ), 69 | 'href' => esc_url( admin_url( 'upload.php?page=add-from-server' ) ), 70 | 'meta' => array( 71 | 'target' => '', 72 | 'title' => esc_attr_x( 'Add From Server', 'Toolbar New Content section', 'toolbar-extras' ), 73 | ) 74 | ) 75 | ); 76 | 77 | } // end if 78 | 79 | } // end function 80 | -------------------------------------------------------------------------------- /includes/plugins/items-advanced-twentyseventeen.php: -------------------------------------------------------------------------------- 1 | 'panel', 29 | 'title' => __( 'Advanced: Global', 'toolbar-extras' ), 30 | 'id' => 'ats-cmz-global', 31 | ); 32 | 33 | $twenty_seventeen_items[ 'ats_header_panel' ] = array( 34 | 'type' => 'panel', 35 | 'title' => __( 'Advanced: Header', 'toolbar-extras' ), 36 | 'id' => 'ats-cmz-header', 37 | ); 38 | 39 | $twenty_seventeen_items[ 'ats_footer_panel' ] = array( 40 | 'type' => 'panel', 41 | 'title' => __( 'Advanced: Footer', 'toolbar-extras' ), 42 | 'id' => 'ats-cmz-footer', 43 | ); 44 | 45 | $twenty_seventeen_items[ 'ats_miscellaneous_panel' ] = array( 46 | 'type' => 'panel', 47 | 'title' => __( 'Advanced: Miscellaneous', 'toolbar-extras' ), 48 | 'id' => 'ats-cmz-miscellaneous', 49 | ); 50 | 51 | $twenty_seventeen_items[ 'ats_home_panel' ] = array( 52 | 'type' => 'panel', 53 | 'title' => __( 'Advanced: Home Page', 'toolbar-extras' ), 54 | 'id' => 'ats-cmz-home-page', 55 | ); 56 | 57 | /** Merge and return with all items */ 58 | return array_merge( $items, $twenty_seventeen_items ); 59 | 60 | } // end function 61 | -------------------------------------------------------------------------------- /includes/plugins/items-cobalt-instant-ide.php: -------------------------------------------------------------------------------- 1 | add_group( 30 | array( 31 | 'id' => 'group-instant-ide', 32 | 'parent' => 'rapid-dev', 33 | ) 34 | ); 35 | 36 | $admin_bar->add_node( 37 | array( 38 | 'id' => 'iide', 39 | 'parent' => 'group-instant-ide', 40 | 'title' => esc_attr__( 'Instant IDE', 'toolbar-extras' ), 41 | 'href' => esc_url( get_home_url() . '/' . IIDEM_IIDE_DIR_NAME . '/' ), 42 | 'meta' => array( 43 | 'rel' => ddw_tbex_meta_rel(), 44 | 'target' => ddw_tbex_meta_target(), 45 | 'title' => esc_attr__( 'Instant IDE (Code Editor)', 'toolbar-extras' ), 46 | ) 47 | ) 48 | ); 49 | 50 | $admin_bar->add_node( 51 | array( 52 | 'id' => 'iide-preview', 53 | 'parent' => 'group-instant-ide', 54 | 'title' => esc_attr__( 'Instant IDE Preview', 'toolbar-extras' ), 55 | 'href' => esc_url( get_home_url() . '/' . IIDEM_IIDE_DIR_NAME . '/?sitePreview=true' ), 56 | 'meta' => array( 57 | 'rel' => ddw_tbex_meta_rel(), 58 | 'target' => ddw_tbex_meta_target(), 59 | 'title' => esc_attr__( 'Instant IDE - Site Preview', 'toolbar-extras' ), 60 | ) 61 | ) 62 | ); 63 | 64 | } // end function 65 | -------------------------------------------------------------------------------- /includes/plugins/items-content-aware-sidebars.php: -------------------------------------------------------------------------------- 1 | add_group( 26 | array( 27 | 'id' => 'group-cas-sidebars', 28 | 'parent' => 'wpwidgets', 29 | ) 30 | ); 31 | 32 | $admin_bar->add_node( 33 | array( 34 | 'id' => 'widget-content-aware-sidebars', 35 | 'parent' => 'group-cas-sidebars', 36 | 'title' => esc_attr__( 'Content Aware Sidebars', 'toolbar-extras' ), 37 | 'href' => esc_url( admin_url( 'admin.php?page=wpcas' ) ), 38 | 'meta' => array( 39 | 'target' => '', 40 | 'title' => esc_attr__( 'Content Aware Sidebars', 'toolbar-extras' ), 41 | ) 42 | ) 43 | ); 44 | 45 | $admin_bar->add_node( 46 | array( 47 | 'id' => 'widget-cas-new-sidebar', 48 | 'parent' => 'group-cas-sidebars', 49 | 'title' => esc_attr__( 'New Sidebar', 'toolbar-extras' ), 50 | 'href' => esc_url( admin_url( 'admin.php?page=wpcas-edit' ) ), 51 | 'meta' => array( 52 | 'target' => '', 53 | 'title' => esc_attr__( 'New Sidebar', 'toolbar-extras' ), 54 | ) 55 | ) 56 | ); 57 | 58 | } // end function 59 | -------------------------------------------------------------------------------- /includes/plugins/items-cpt-generic-type.php: -------------------------------------------------------------------------------- 1 | add_node( 28 | array( 29 | 'id' => 'ao-ccsspro', 30 | 'parent' => 'group-active-theme', 31 | 'title' => esc_attr__( 'Custom CSS Pro', 'toolbar-extras' ), 32 | 'href' => esc_url( admin_url( 'admin.php?page=ccp-editor' ) ), 33 | 'meta' => array( 34 | 'target' => ddw_tbex_meta_target(), 35 | 'title' => esc_attr__( 'Custom CSS Pro - Live Editor', 'toolbar-extras' ), 36 | ) 37 | ) 38 | ); 39 | 40 | } // end function 41 | 42 | 43 | add_action( 'wp_before_admin_bar_render', 'ddw_tbex_remove_items_customcsspro' ); 44 | /** 45 | * Remove items from Custom CSS Pro plugin. 46 | * 47 | * @since 1.0.0 48 | * 49 | * @uses ddw_tbex_use_tweak_customcsspro() 50 | * 51 | * @global mixed $GLOBALS[ 'wp_admin_bar' ] 52 | */ 53 | function ddw_tbex_remove_items_customcsspro() { 54 | 55 | /** Bail early if Custom CSS Pro tweak should NOT be used */ 56 | if ( ! ddw_tbex_use_tweak_customcsspro() ) { 57 | return; 58 | } 59 | 60 | $GLOBALS[ 'wp_admin_bar' ]->remove_node( 'ccp-editor' ); 61 | 62 | } // end function 63 | -------------------------------------------------------------------------------- /includes/plugins/items-customize-twentyseventeen.php: -------------------------------------------------------------------------------- 1 | 'section', 29 | 'title' => __( 'BoldThemes Settings', 'toolbar-extras' ), 30 | 'id' => 'cmz-2017-boldthemes', 31 | ); 32 | 33 | /** Merge and return with all items */ 34 | return array_merge( $items, $twenty_seventeen_items ); 35 | 36 | } // end function 37 | -------------------------------------------------------------------------------- /includes/plugins/items-customize-twentysixteen.php: -------------------------------------------------------------------------------- 1 | 'section', 29 | 'title' => __( 'BoldThemes Settings', 'toolbar-extras' ), 30 | 'id' => 'cmz-2016-boldthemes', 31 | ); 32 | 33 | /** Merge and return with all items */ 34 | return array_merge( $items, $twenty_sixteen_items ); 35 | 36 | } // end function 37 | -------------------------------------------------------------------------------- /includes/plugins/items-customizer-export-import.php: -------------------------------------------------------------------------------- 1 | add_node( 29 | array( 30 | 'id' => 'ao-cei', 31 | 'parent' => 'theme-creative-customize', 32 | /* translators: Autofocus section in the Customizer */ 33 | 'title' => esc_attr__( 'Export & Import', 'toolbar-extras' ), 34 | 'href' => ddw_tbex_customizer_focus( 'section', 'cei-section' ), 35 | 'meta' => array( 36 | 'target' => ddw_tbex_meta_target(), 37 | 'title' => esc_attr__( 'Export & Import Customizer Options', 'toolbar-extras' ), 38 | ) 39 | ) 40 | ); 41 | 42 | /** Frontend: Customizer sub item */ 43 | $admin_bar->add_node( 44 | array( 45 | 'id' => 'customize-cei', 46 | 'parent' => 'customize', 47 | /* translators: Autofocus section in the Customizer */ 48 | 'title' => ddw_tbex_item_title_with_icon( esc_attr__( 'Export & Import', 'toolbar-extras' ) ), 49 | 'href' => ddw_tbex_customizer_focus( 'section', 'cei-section' ), 50 | 'meta' => array( 51 | 'target' => ddw_tbex_meta_target(), 52 | 'title' => esc_attr__( 'Export & Import Customizer Options', 'toolbar-extras' ), 53 | ) 54 | ) 55 | ); 56 | 57 | } // end function 58 | -------------------------------------------------------------------------------- /includes/plugins/items-delete-expired-transients.php: -------------------------------------------------------------------------------- 1 | add_group( 30 | array( 31 | 'id' => 'group-deltransients', 32 | 'parent' => 'rapid-dev', 33 | ) 34 | ); 35 | 36 | $admin_bar->add_node( 37 | array( 38 | 'id' => 'deltransients', 39 | 'parent' => 'group-deltransients', 40 | 'title' => esc_attr__( 'Delete Expired Transients', 'toolbar-extras' ), 41 | 'href' => esc_url( admin_url( 'tools.php?page=delxtrans' ) ), 42 | 'meta' => array( 43 | 'target' => '', 44 | 'title' => esc_attr__( 'Delete Expired Transients', 'toolbar-extras' ), 45 | ) 46 | ) 47 | ); 48 | 49 | } // end function 50 | -------------------------------------------------------------------------------- /includes/plugins/items-delightful-downloads.php: -------------------------------------------------------------------------------- 1 | add_node( 27 | array( 28 | 'id' => 'manage-content-dedo', 29 | 'parent' => 'manage-content', 30 | 'title' => esc_attr__( 'Edit Downloads', 'toolbar-extras' ), 31 | 'href' => esc_url( admin_url( 'edit.php?post_type=dedo_download' ) ), 32 | 'meta' => array( 33 | 'target' => '', 34 | 'title' => esc_attr__( 'Edit Downloads', 'toolbar-extras' ), 35 | ) 36 | ) 37 | ); 38 | 39 | } // end function 40 | -------------------------------------------------------------------------------- /includes/plugins/items-download-monitor.php: -------------------------------------------------------------------------------- 1 | add_node( 27 | array( 28 | 'id' => 'manage-content-dlm', 29 | 'parent' => 'manage-content', 30 | 'title' => esc_attr__( 'Edit Downloads', 'toolbar-extras' ), 31 | 'href' => esc_url( admin_url( 'edit.php?post_type=dlm_download' ) ), 32 | 'meta' => array( 33 | 'target' => '', 34 | 'title' => esc_attr__( 'Edit Downloads', 'toolbar-extras' ), 35 | ) 36 | ) 37 | ); 38 | 39 | } // end function 40 | -------------------------------------------------------------------------------- /includes/plugins/items-error-log-viewer.php: -------------------------------------------------------------------------------- 1 | add_group( 30 | array( 31 | 'id' => 'group-errorlogviewer', 32 | 'parent' => 'rapid-dev', 33 | ) 34 | ); 35 | 36 | $admin_bar->add_node( 37 | array( 38 | 'id' => 'errorlogviewer-log-monitor', 39 | 'parent' => 'group-errorlogviewer', 40 | 'title' => esc_attr__( 'Log Monitor', 'toolbar-extras' ), 41 | 'href' => esc_url( admin_url( 'admin.php?page=rrrlgvwr.php&tab=logmonitor' ) ), 42 | 'meta' => array( 43 | 'target' => '', 44 | 'title' => esc_attr__( 'Log Monitor', 'toolbar-extras' ), 45 | ) 46 | ) 47 | ); 48 | 49 | $admin_bar->add_node( 50 | array( 51 | 'id' => 'errorlogviewer-settings', 52 | 'parent' => 'group-errorlogviewer', 53 | 'title' => esc_attr__( 'Settings', 'toolbar-extras' ), 54 | 'href' => esc_url( admin_url( 'admin.php?page=rrrlgvwr.php&tab=settings' ) ), 55 | 'meta' => array( 56 | 'target' => '', 57 | 'title' => esc_attr__( 'Settings', 'toolbar-extras' ), 58 | ) 59 | ) 60 | ); 61 | 62 | } // end function 63 | -------------------------------------------------------------------------------- /includes/plugins/items-export-import-menus.php: -------------------------------------------------------------------------------- 1 | add_node( 29 | array( 30 | 'id' => 'tbex-export-import-menus', 31 | 'parent' => 'wpmenus', 32 | 'title' => esc_attr__( 'Export & Import Menus', 'toolbar-extras' ), 33 | 'href' => esc_url( admin_url( 'themes.php?page=dsp_export_import_menus' ) ), 34 | 'meta' => array( 35 | 'target' => '', 36 | 'title' => esc_attr__( 'Export & Import Menus', 'toolbar-extras' ), 37 | ) 38 | ) 39 | ); 40 | 41 | } // end function 42 | -------------------------------------------------------------------------------- /includes/plugins/items-front-page-builder.php: -------------------------------------------------------------------------------- 1 | add_node( 28 | array( 29 | 'id' => 'ao-front-page-builder', 30 | 'parent' => 'theme-creative-customize', 31 | /* translators: Autofocus panel in the Customizer */ 32 | 'title' => esc_attr__( 'Front Page Builder Settings', 'toolbar-extras' ), 33 | 'href' => ddw_tbex_customizer_focus( 'panel', 'homepage', site_url( '/' ) ), 34 | 'meta' => array( 35 | 'target' => ddw_tbex_meta_target(), 36 | 'title' => ddw_tbex_string_customize_attr( __( 'Front Page Builder Settings', 'toolbar-extras' ) ), 37 | ) 38 | ) 39 | ); 40 | 41 | } // end function 42 | -------------------------------------------------------------------------------- /includes/plugins/items-github-updater.php: -------------------------------------------------------------------------------- 1 | add_node( 26 | array( 27 | 'id' => 'ghu-install-plugin', 28 | 'parent' => 'install-plugin', 29 | 'title' => esc_attr__( 'via GitHub Updater', 'toolbar-extras' ), 30 | 'href' => is_multisite() ? esc_url( network_admin_url( 'settings.php?page=github-updater&tab=github_updater_install_plugin' ) ) : esc_url( admin_url( 'options-general.php?page=github-updater&tab=github_updater_install_plugin' ) ), 31 | 'meta' => array( 32 | 'target' => '', 33 | 'title' => esc_attr__( 'Install Plugin via GitHub Updater', 'toolbar-extras' ), 34 | ) 35 | ) 36 | ); 37 | 38 | $admin_bar->add_node( 39 | array( 40 | 'id' => 'ghu-install-theme', 41 | 'parent' => 'install-theme', 42 | 'title' => esc_attr__( 'via GitHub Updater', 'toolbar-extras' ), 43 | 'href' => is_multisite() ? esc_url( network_admin_url( 'settings.php?page=github-updater&tab=github_updater_install_theme' ) ) : esc_url( admin_url( 'options-general.php?page=github-updater&tab=github_updater_install_theme' ) ), 44 | 'meta' => array( 45 | 'target' => '', 46 | 'title' => esc_attr__( 'Install Theme via GitHub Updater', 'toolbar-extras' ), 47 | ) 48 | ) 49 | ); 50 | 51 | } // end function 52 | -------------------------------------------------------------------------------- /includes/plugins/items-gp-back-to-top.php: -------------------------------------------------------------------------------- 1 | add_group( 26 | array( 27 | 'id' => 'group-ao-gpbtt', 28 | 'parent' => 'theme-creative', 29 | ) 30 | ); 31 | 32 | $admin_bar->add_node( 33 | array( 34 | 'id' => 'ao-gp-back-to-top', 35 | 'parent' => 'group-ao-gpbtt', 36 | 'title' => esc_attr__( 'GP Back to Top', 'toolbar-extras' ), 37 | 'href' => esc_url( admin_url( 'options-general.php?page=gp-back-to-top' ) ), 38 | 'meta' => array( 39 | 'target' => '', 40 | 'title' => ddw_tbex_string_free_addon_title_attr( __( 'GP Back to Top', 'toolbar-extras' ) ), 41 | ) 42 | ) 43 | ); 44 | 45 | } // end function 46 | -------------------------------------------------------------------------------- /includes/plugins/items-gp-elements-disable.php: -------------------------------------------------------------------------------- 1 | add_group( 26 | array( 27 | 'id' => 'group-ao-gpdae', 28 | 'parent' => 'theme-creative', 29 | ) 30 | ); 31 | 32 | $admin_bar->add_node( 33 | array( 34 | 'id' => 'ao-gp-disable-features', 35 | 'parent' => 'group-ao-gpdae', 36 | 'title' => esc_attr__( 'GP Disable Features', 'toolbar-extras' ), 37 | 'href' => FALSE, 38 | 'meta' => array( 39 | 'target' => '', 40 | 'title' => ddw_tbex_string_free_addon_title_attr( __( 'GP Disable Features', 'toolbar-extras' ) ), 41 | ) 42 | ) 43 | ); 44 | 45 | $admin_bar->add_node( 46 | array( 47 | 'id' => 'ao-gp-disable-features-background', 48 | 'parent' => 'ao-gp-disable-features', 49 | 'title' => esc_attr__( 'Background Elements', 'toolbar-extras' ), 50 | 'href' => esc_url( admin_url( 'themes.php?page=wcd_define_title()' ) ), 51 | 'meta' => array( 52 | 'target' => '', 53 | 'title' => esc_attr__( 'Background Elements', 'toolbar-extras' ), 54 | ) 55 | ) 56 | ); 57 | 58 | $admin_bar->add_node( 59 | array( 60 | 'id' => 'ao-gp-disable-features-sidebars', 61 | 'parent' => 'ao-gp-disable-features', 62 | 'title' => esc_attr__( 'Widget Areas', 'toolbar-extras' ), 63 | 'href' => esc_url( admin_url( 'themes.php?page=gp_sidebar_disable' ) ), 64 | 'meta' => array( 65 | 'target' => '', 66 | 'title' => esc_attr__( 'Sidebars - Widget Areas', 'toolbar-extras' ), 67 | ) 68 | ) 69 | ); 70 | 71 | } // end function 72 | -------------------------------------------------------------------------------- /includes/plugins/items-gp-related-posts.php: -------------------------------------------------------------------------------- 1 | add_group( 26 | array( 27 | 'id' => 'group-ao-gprp', 28 | 'parent' => 'theme-creative', 29 | ) 30 | ); 31 | 32 | $admin_bar->add_node( 33 | array( 34 | 'id' => 'ao-gp-related-posts', 35 | 'parent' => 'group-ao-gprp', 36 | 'title' => esc_attr__( 'GP Related Posts', 'toolbar-extras' ), 37 | 'href' => esc_url( admin_url( 'options-general.php?page=gp_related_posts' ) ), 38 | 'meta' => array( 39 | 'target' => '', 40 | 'title' => ddw_tbex_string_free_addon_title_attr( __( 'GP Related Posts', 'toolbar-extras' ) ), 41 | ) 42 | ) 43 | ); 44 | 45 | } // end function 46 | -------------------------------------------------------------------------------- /includes/plugins/items-gp-social-share.php: -------------------------------------------------------------------------------- 1 | add_group( 26 | array( 27 | 'id' => 'group-ao-gpss', 28 | 'parent' => 'theme-creative', 29 | ) 30 | ); 31 | 32 | $admin_bar->add_node( 33 | array( 34 | 'id' => 'ao-gp-social-share', 35 | 'parent' => 'group-ao-gpss', 36 | 'title' => esc_attr__( 'GP Social Share', 'toolbar-extras' ), 37 | 'href' => esc_url( admin_url( 'themes.php?page=gp_social_settings' ) ), 38 | 'meta' => array( 39 | 'target' => '', 40 | 'title' => ddw_tbex_string_free_addon_title_attr( __( 'GP Social Share', 'toolbar-extras' ) ), 41 | ) 42 | ) 43 | ); 44 | 45 | } // end function 46 | -------------------------------------------------------------------------------- /includes/plugins/items-gp-tweaks.php: -------------------------------------------------------------------------------- 1 | 'panel', 28 | 'title' => __( 'GP Tweaks', 'toolbar-extras' ), 29 | 'id' => 'gptweakscmz-gp-tweaks', 30 | //'parent' => 31 | ); 32 | 33 | /** Merge and return with all items */ 34 | return array_merge( $items, $gptweaks_items ); 35 | 36 | } // end function 37 | -------------------------------------------------------------------------------- /includes/plugins/items-log-deprecated-notices.php: -------------------------------------------------------------------------------- 1 | add_group( 30 | array( 31 | 'id' => 'group-logdctn', 32 | 'parent' => 'rapid-dev', 33 | ) 34 | ); 35 | 36 | $admin_bar->add_node( 37 | array( 38 | 'id' => 'log-deprecated-notices', 39 | 'parent' => 'group-logdctn', 40 | 'title' => esc_attr__( 'Deprecated Notices', 'toolbar-extras' ), 41 | 'href' => esc_url( admin_url( 'edit.php?post_type=deprecated_log' ) ), 42 | 'meta' => array( 43 | 'target' => '', 44 | 'title' => esc_attr__( 'Deprecated Notices', 'toolbar-extras' ), 45 | ) 46 | ) 47 | ); 48 | 49 | /** Plugin's resources */ 50 | if ( ddw_tbex_display_items_resources() ) { 51 | 52 | ddw_tbex_resource_item( 53 | 'documentation', 54 | 'logdctn-docs', 55 | 'group-logdctn', 56 | 'https://nacin.com/2010/03/22/deprecated-functions-and-wp_debug/' 57 | ); 58 | 59 | } // end if 60 | 61 | } // end function 62 | 63 | 64 | add_action( 'wp_before_admin_bar_render', 'ddw_tbex_remove_items_log_deprecated_notices' ); 65 | /** 66 | * Remove plugin's "Add New" item as it is not possible to manually add new logs. 67 | * 68 | * @since 1.3.2 69 | * 70 | * @global mixed $GLOBALS[ 'wp_admin_bar' ] 71 | */ 72 | function ddw_tbex_remove_items_log_deprecated_notices() { 73 | 74 | $GLOBALS[ 'wp_admin_bar' ]->remove_node( 'new-deprecated_log' ); 75 | 76 | } // end function 77 | -------------------------------------------------------------------------------- /includes/plugins/items-log-viewer.php: -------------------------------------------------------------------------------- 1 | add_group( 30 | array( 31 | 'id' => 'group-logviewer', 32 | 'parent' => 'rapid-dev', 33 | ) 34 | ); 35 | 36 | $admin_bar->add_node( 37 | array( 38 | 'id' => 'log-viewer-elements', 39 | 'parent' => 'group-logviewer', 40 | 'title' => esc_attr__( 'View Log Files', 'toolbar-extras' ), 41 | 'href' => esc_url( admin_url( 'tools.php?page=log_viewer_files_view' ) ), 42 | 'meta' => array( 43 | 'target' => '', 44 | 'title' => esc_attr__( 'View Log Files', 'toolbar-extras' ), 45 | ) 46 | ) 47 | ); 48 | 49 | } // end function 50 | -------------------------------------------------------------------------------- /includes/plugins/items-members.php: -------------------------------------------------------------------------------- 1 | add_node( 31 | array( 32 | 'id' => 'roles-all', 33 | 'parent' => 'group-user-roles', 34 | 'title' => ddw_tbex_item_title_with_icon( esc_attr__( 'User Roles', 'toolbar-extras' ) ), 35 | 'href' => esc_url( admin_url( 'users.php?page=roles' ) ), 36 | 'meta' => array( 37 | 'class' => 'tbex-users', 38 | 'target' => '', 39 | 'title' => esc_attr__( 'User Roles', 'toolbar-extras' ), 40 | ) 41 | ) 42 | ); 43 | 44 | $admin_bar->add_node( 45 | array( 46 | 'id' => 'roles-new', 47 | 'parent' => 'group-user-roles', 48 | 'title' => ddw_tbex_item_title_with_icon( esc_attr__( 'New Role', 'toolbar-extras' ) ), 49 | 'href' => esc_url( admin_url( 'users.php?page=role-new' ) ), 50 | 'meta' => array( 51 | 'class' => 'tbex-users', 52 | 'target' => '', 53 | 'title' => esc_attr__( 'New Role', 'toolbar-extras' ), 54 | ) 55 | ) 56 | ); 57 | 58 | } // end function 59 | -------------------------------------------------------------------------------- /includes/plugins/items-oceanwp-sticky-header.php: -------------------------------------------------------------------------------- 1 | add_group( 26 | array( 27 | 'id' => 'group-ao-owpsh', 28 | 'parent' => 'theme-creative', 29 | ) 30 | ); 31 | 32 | $admin_bar->add_node( 33 | array( 34 | 'id' => 'ao-oceanwp-sticky-header', 35 | 'parent' => 'group-ao-owpsh', 36 | 'title' => esc_attr__( 'Sticky Header', 'toolbar-extras' ), 37 | 'href' => esc_url( admin_url( 'options-general.php?page=sticky-header-oceanwp' ) ), 38 | 'meta' => array( 39 | 'target' => '', 40 | 'title' => ddw_tbex_string_free_addon_title_attr( __( 'Sticky Header', 'toolbar-extras' ) ), 41 | ) 42 | ) 43 | ); 44 | 45 | } // end function 46 | -------------------------------------------------------------------------------- /includes/plugins/items-oneclick-demo-import.php: -------------------------------------------------------------------------------- 1 | import_files; 35 | 36 | $admin_bar->add_node( 37 | array( 38 | 'id' => ddw_tbex_id_sites_browser(), 39 | 'parent' => 'group-demo-import', 40 | 'title' => ddw_tbex_item_title_with_settings_icon( esc_attr__( 'Install Demo Data', 'toolbar-extras' ), 'general', 'demo_import_icon' ), 41 | 'href' => empty( $predefined_themes ) ? esc_url( admin_url( 'themes.php?page=pt-one-click-demo-import&import-mode=manual' ) ) : esc_url( admin_url( 'themes.php?page=pt-one-click-demo-import' ) ), 42 | 'meta' => array( 43 | 'target' => '', 44 | 'title' => esc_attr__( 'Install Demo Data', 'toolbar-extras' ), 45 | ) 46 | ) 47 | ); 48 | 49 | } // end function 50 | -------------------------------------------------------------------------------- /includes/plugins/items-options-for-twentynineteen.php: -------------------------------------------------------------------------------- 1 | 'section', 29 | 'title' => __( 'General Options', 'toolbar-extras' ), 30 | 'id' => 'oftn-cmzoptions-general', 31 | ); 32 | 33 | $twenty_nineteen_items[ 'oftn_header' ] = array( 34 | 'type' => 'section', 35 | 'title' => __( 'Header Options', 'toolbar-extras' ), 36 | 'id' => 'oftn-cmzoptions-header', 37 | ); 38 | 39 | $twenty_nineteen_items[ 'oftn_navigation' ] = array( 40 | 'type' => 'section', 41 | 'title' => __( 'Nav Options', 'toolbar-extras' ), 42 | 'id' => 'oftn-cmzoptions-nav', 43 | ); 44 | 45 | $twenty_nineteen_items[ 'oftn_content' ] = array( 46 | 'type' => 'section', 47 | 'title' => __( 'Content Options', 'toolbar-extras' ), 48 | 'id' => 'oftn-cmzoptions-content', 49 | ); 50 | 51 | $twenty_nineteen_items[ 'oftn_footer' ] = array( 52 | 'type' => 'section', 53 | 'title' => __( 'Footer Options', 'toolbar-extras' ), 54 | 'id' => 'oftn-cmzoptions-footer', 55 | ); 56 | 57 | /** Merge and return with all items */ 58 | return array_merge( $twenty_nineteen_items, $items ); 59 | 60 | } // end function 61 | -------------------------------------------------------------------------------- /includes/plugins/items-options-for-twentyseventeen.php: -------------------------------------------------------------------------------- 1 | 'section', 29 | 'title' => __( 'General Options', 'toolbar-extras' ), 30 | 'id' => 'ofts-cmzoptions-general', 31 | ); 32 | 33 | $twenty_seventeen_items[ 'ofts_header' ] = array( 34 | 'type' => 'section', 35 | 'title' => __( 'Header Options', 'toolbar-extras' ), 36 | 'id' => 'ofts-cmzoptions-header', 37 | ); 38 | 39 | $twenty_seventeen_items[ 'ofts_navigation' ] = array( 40 | 'type' => 'section', 41 | 'title' => __( 'Nav Options', 'toolbar-extras' ), 42 | 'id' => 'ofts-cmzoptions-nav', 43 | ); 44 | 45 | $twenty_seventeen_items[ 'ofts_content' ] = array( 46 | 'type' => 'section', 47 | 'title' => __( 'Content Options', 'toolbar-extras' ), 48 | 'id' => 'ofts-cmzoptions-content', 49 | ); 50 | 51 | $twenty_seventeen_items[ 'ofts_footer' ] = array( 52 | 'type' => 'section', 53 | 'title' => __( 'Footer Options', 'toolbar-extras' ), 54 | 'id' => 'ofts-cmzoptions-footer', 55 | ); 56 | 57 | /** Merge and return with all items */ 58 | return array_merge( $twenty_seventeen_items, $items ); 59 | 60 | } // end function 61 | -------------------------------------------------------------------------------- /includes/plugins/items-popup-maker.php: -------------------------------------------------------------------------------- 1 | add_node( 27 | array( 28 | 'id' => 'manage-content-popups', 29 | 'parent' => 'manage-content', 30 | 'title' => esc_attr__( 'Edit Popups', 'toolbar-extras' ), 31 | 'href' => esc_url( admin_url( 'edit.php?post_type=popup' ) ), 32 | 'meta' => array( 33 | 'target' => '', 34 | 'title' => esc_attr__( 'Edit Popups', 'toolbar-extras' ), 35 | ) 36 | ) 37 | ); 38 | 39 | /** For: New Content */ 40 | if ( ddw_tbex_is_elementor_active() && \Elementor\User::is_current_user_can_edit_post_type( 'popup' ) ) { 41 | 42 | $admin_bar->add_node( 43 | array( 44 | 'id' => 'popup-with-builder', 45 | 'parent' => 'new-popup', 46 | 'title' => ddw_tbex_string_newcontent_with_builder(), 47 | 'href' => esc_attr( \Elementor\Utils::get_create_new_post_url( 'popup' ) ), 48 | 'meta' => array( 49 | 'target' => ddw_tbex_meta_target( 'builder' ), 50 | 'title' => ddw_tbex_string_newcontent_create_with_builder(), 51 | ) 52 | ) 53 | ); 54 | 55 | } // end if 56 | 57 | } // end function 58 | -------------------------------------------------------------------------------- /includes/plugins/items-regenerate-thumbnails.php: -------------------------------------------------------------------------------- 1 | add_node( 27 | array( 28 | 'id' => 'regenerate-thumbnails', 29 | 'parent' => 'manage-content-media', 30 | 'title' => esc_attr__( 'Regenerate Thumbnails', 'toolbar-extras' ), 31 | 'href' => esc_url( admin_url( 'tools.php?page=regenerate-thumbnails' ) ), 32 | 'meta' => array( 33 | 'target' => '', 34 | 'title' => esc_attr__( 'Regenerate Thumbnails', 'toolbar-extras' ), 35 | ) 36 | ) 37 | ); 38 | 39 | } // end function 40 | -------------------------------------------------------------------------------- /includes/plugins/items-simple-urls.php: -------------------------------------------------------------------------------- 1 | add_node( 27 | array( 28 | 'id' => 'manage-content-surl', 29 | 'parent' => 'manage-content', 30 | 'title' => esc_attr__( 'Edit URLs', 'toolbar-extras' ), 31 | 'href' => esc_url( admin_url( 'edit.php?post_type=surl' ) ), 32 | 'meta' => array( 33 | 'target' => '', 34 | 'title' => esc_attr__( 'Edit URLs', 'toolbar-extras' ), 35 | ) 36 | ) 37 | ); 38 | 39 | } // end function 40 | -------------------------------------------------------------------------------- /includes/plugins/items-siteorigin-css.php: -------------------------------------------------------------------------------- 1 | add_node( 27 | array( 28 | 'id' => 'ao-siteorigincss', 29 | 'parent' => 'group-active-theme', 30 | 'title' => esc_attr__( 'SiteOrigin CSS', 'toolbar-extras' ), 31 | 'href' => esc_url( admin_url( 'themes.php?page=so_custom_css' ) ), 32 | 'meta' => array( 33 | 'target' => '', 34 | 'title' => ddw_tbex_string_addon_title_attr( __( 'SiteOrigin CSS', 'toolbar-extras' ) ), 35 | ) 36 | ) 37 | ); 38 | 39 | } // end function 40 | -------------------------------------------------------------------------------- /includes/plugins/items-sticky-header-2020.php: -------------------------------------------------------------------------------- 1 | 'section', 29 | 'title' => __( 'Sticky Header', 'toolbar-extras' ), 30 | 'id' => 'cmz-2020-sticky-header', 31 | ); 32 | 33 | /** Merge and return with all items */ 34 | return array_merge( $items, $twenty_twenty_items ); 35 | 36 | } // end function 37 | -------------------------------------------------------------------------------- /includes/plugins/items-tablepress.php: -------------------------------------------------------------------------------- 1 | add_node( 32 | array( 33 | 'id' => 'manage-content-tablepress', 34 | 'parent' => 'manage-content', 35 | 'title' => esc_attr__( 'Edit Tables', 'toolbar-extras' ), 36 | 'href' => esc_url( TablePress::url() ), 37 | 'meta' => array( 38 | 'target' => '', 39 | 'title' => esc_attr__( 'Edit Tables', 'toolbar-extras' ), 40 | ) 41 | ) 42 | ); 43 | 44 | } // end function 45 | -------------------------------------------------------------------------------- /includes/plugins/items-theme-switcha.php: -------------------------------------------------------------------------------- 1 | add_group( 30 | array( 31 | 'id' => 'group-themeswitcha', 32 | 'parent' => 'rapid-dev', 33 | ) 34 | ); 35 | 36 | $admin_bar->add_node( 37 | array( 38 | 'id' => 'themeswitcha', 39 | 'parent' => 'group-themeswitcha', 40 | 'title' => esc_attr__( 'Theme Switcha', 'toolbar-extras' ), 41 | 'href' => esc_url( admin_url( 'options-general.php?page=theme_switcha_settings' ) ), 42 | 'meta' => array( 43 | 'target' => '', 44 | 'title' => esc_attr__( 'Theme Switcha', 'toolbar-extras' ), 45 | ) 46 | ) 47 | ); 48 | 49 | /** Plugin's Resources */ 50 | if ( ddw_tbex_display_items_resources() ) { 51 | 52 | ddw_tbex_resource_item( 53 | 'documentation', 54 | 'themeswitcha-docs', 55 | 'group-themeswitcha', 56 | 'https://wordpress.org/plugins/theme-switcha/#installation' 57 | ); 58 | 59 | } // end if 60 | 61 | } // end function 62 | -------------------------------------------------------------------------------- /includes/plugins/items-thirsty-affiliates.php: -------------------------------------------------------------------------------- 1 | add_node( 27 | array( 28 | 'id' => 'manage-content-thirsty', 29 | 'parent' => 'manage-content', 30 | 'title' => esc_attr__( 'Edit Affiliate Links', 'toolbar-extras' ), 31 | 'href' => esc_url( admin_url( 'edit.php?post_type=thirstylink' ) ), 32 | 'meta' => array( 33 | 'target' => '', 34 | 'title' => esc_attr__( 'Edit Affiliate Links', 'toolbar-extras' ), 35 | ) 36 | ) 37 | ); 38 | 39 | } // end function 40 | -------------------------------------------------------------------------------- /includes/plugins/items-transient-cleaner.php: -------------------------------------------------------------------------------- 1 | add_group( 30 | array( 31 | 'id' => 'group-transientcleaner', 32 | 'parent' => 'rapid-dev', 33 | ) 34 | ); 35 | 36 | $admin_bar->add_node( 37 | array( 38 | 'id' => 'transientcleaner', 39 | 'parent' => 'group-transientcleaner', 40 | 'title' => esc_attr__( 'Transient Cleaner', 'toolbar-extras' ), 41 | 'href' => esc_url( admin_url( 'tools.php?page=transient-options' ) ), 42 | 'meta' => array( 43 | 'target' => '', 44 | 'title' => esc_attr__( 'Transient Cleaner', 'toolbar-extras' ), 45 | ) 46 | ) 47 | ); 48 | 49 | } // end function 50 | -------------------------------------------------------------------------------- /includes/plugins/items-transients-manager.php: -------------------------------------------------------------------------------- 1 | add_group( 30 | array( 31 | 'id' => 'group-transients-manager', 32 | 'parent' => 'rapid-dev', 33 | ) 34 | ); 35 | 36 | $admin_bar->add_node( 37 | array( 38 | 'id' => 'transients-manager', 39 | 'parent' => 'group-transients-manager', 40 | 'title' => esc_attr__( 'Transients Manager', 'toolbar-extras' ), 41 | 'href' => esc_url( admin_url( 'tools.php?page=pw-transients-manager' ) ), 42 | 'meta' => array( 43 | 'target' => '', 44 | 'title' => esc_attr__( 'Transients Manager', 'toolbar-extras' ), 45 | ) 46 | ) 47 | ); 48 | 49 | } // end function 50 | -------------------------------------------------------------------------------- /includes/plugins/items-widget-importer-exporter.php: -------------------------------------------------------------------------------- 1 | add_node( 27 | array( 28 | 'id' => 'widget-importexport', 29 | 'parent' => 'wpwidgets', 30 | 'title' => esc_attr__( 'Import & Export', 'toolbar-extras' ), 31 | 'href' => esc_url( admin_url( 'tools.php?page=widget-importer-exporter' ) ), 32 | 'meta' => array( 33 | 'target' => '', 34 | 'title' => esc_attr__( 'Import & Export', 'toolbar-extras' ), 35 | ) 36 | ) 37 | ); 38 | 39 | } // end function 40 | -------------------------------------------------------------------------------- /includes/plugins/items-widget-options.php: -------------------------------------------------------------------------------- 1 | add_group( 27 | array( 28 | 'id' => 'group-phpbits-widget-options', 29 | 'parent' => 'wpwidgets', 30 | ) 31 | ); 32 | 33 | $admin_bar->add_node( 34 | array( 35 | 'id' => 'phpbits-widget-options', 36 | 'parent' => 'group-phpbits-widget-options', 37 | 'title' => esc_attr__( 'Widget Options', 'toolbar-extras' ), 38 | 'href' => esc_url( admin_url( 'options-general.php?page=widgetopts_plugin_settings' ) ), 39 | 'meta' => array( 40 | 'target' => '', 41 | 'title' => esc_attr__( 'Widget Options', 'toolbar-extras' ), 42 | ) 43 | ) 44 | ); 45 | 46 | $admin_bar->add_node( 47 | array( 48 | 'id' => 'phpbits-widget-options-import-export', 49 | 'parent' => 'group-phpbits-widget-options', 50 | 'title' => esc_attr__( 'Import or Export Widgets', 'toolbar-extras' ), 51 | 'href' => esc_url( admin_url( 'tools.php?page=widgetopts_migrator_settings' ) ), 52 | 'meta' => array( 53 | 'target' => '', 54 | 'title' => esc_attr__( 'Import or Export Widgets', 'toolbar-extras' ), 55 | ) 56 | ) 57 | ); 58 | 59 | } // end function 60 | -------------------------------------------------------------------------------- /includes/plugins/items-wpmudev-dashboard.php: -------------------------------------------------------------------------------- 1 | add_node( 27 | array( 28 | 'id' => 'wpmudev-install-plugin', 29 | 'parent' => 'install-plugin', 30 | 'title' => esc_attr__( 'via WPMU DEV', 'toolbar-extras' ), 31 | 'href' => esc_url( network_admin_url( 'admin.php?page=wpmudev-plugins' ) ), 32 | 'meta' => array( 33 | 'target' => '', 34 | 'title' => esc_attr__( 'Install Plugins via WPMU DEV', 'toolbar-extras' ), 35 | ) 36 | ) 37 | ); 38 | 39 | } // end function 40 | -------------------------------------------------------------------------------- /includes/themes-genesis/index.php: -------------------------------------------------------------------------------- 1 | array( 33 | 'type' => 'panel', 34 | 'title' => ddw_tbex_string_genesis_child_theme_settings(), 35 | 'id' => 'academypro-settings', 36 | ), 37 | 'colors' => array( 38 | 'type' => 'section', 39 | 'title' => __( 'Colors', 'toolbar-extras' ), 40 | 'id' => 'academypro-colors', 41 | ), 42 | 'header_image' => array( 43 | 'type' => 'section', 44 | 'title' => __( 'Header Image', 'toolbar-extras' ), 45 | 'id' => 'academypro-header-image', 46 | ), 47 | ); 48 | 49 | /** Merge and return with all items */ 50 | return array_merge( $items, $academypro_items ); 51 | 52 | } // end function 53 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-agent-focused-pro.php: -------------------------------------------------------------------------------- 1 | array( 30 | 'type' => 'section', 31 | 'title' => __( 'Front Page Image', 'toolbar-extras' ), 32 | 'id' => 'agentfocusedpro-front-page-image', 33 | ), 34 | 'colors' => array( 35 | 'type' => 'section', 36 | 'title' => __( 'Colors', 'toolbar-extras' ), 37 | 'id' => 'agentfocusedpro-colors', 38 | ), 39 | 'background_image' => array( 40 | 'type' => 'section', 41 | 'title' => __( 'Background Image', 'toolbar-extras' ), 42 | 'id' => 'agentfocusedpro-background-image', 43 | ), 44 | ); 45 | 46 | /** Merge and return with all items */ 47 | return array_merge( $items, $afpro_items ); 48 | 49 | } // end function 50 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-agentpress-pro.php: -------------------------------------------------------------------------------- 1 | array( 31 | 'type' => 'section', 32 | 'title' => __( 'Background Image', 'toolbar-extras' ), 33 | 'id' => 'agentpresspro-background-image', 34 | ), 35 | 'header_image' => array( 36 | 'type' => 'section', 37 | 'title' => __( 'Header Image', 'toolbar-extras' ), 38 | 'id' => 'agentpresspro-header-image', 39 | ), 40 | ); 41 | 42 | /** Merge and return with all items */ 43 | return array_merge( $items, $agppro_items ); 44 | 45 | } // end function 46 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-altitude-pro.php: -------------------------------------------------------------------------------- 1 | array( 31 | 'type' => 'section', 32 | 'title' => __( 'Front Page Background Images', 'toolbar-extras' ), 33 | 'id' => 'altitudepro-frontpage-background-images', 34 | ), 35 | 'colors' => array( 36 | 'type' => 'section', 37 | 'title' => __( 'Colors', 'toolbar-extras' ), 38 | 'id' => 'altitudepro-colors', 39 | ), 40 | 'header_image' => array( 41 | 'type' => 'section', 42 | 'title' => __( 'Header Image', 'toolbar-extras' ), 43 | 'id' => 'altitudepro-header-image', 44 | ), 45 | ); 46 | 47 | /** Merge and return with all items */ 48 | return array_merge( $items, $altitudepro_items ); 49 | 50 | } // end function 51 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-aspire-pro.php: -------------------------------------------------------------------------------- 1 | array( 31 | 'type' => 'section', 32 | 'title' => __( 'Front Page Content Settings', 'toolbar-extras' ), 33 | 'id' => 'aspirepro-front-page-content', 34 | ), 35 | 'aspire-settings' => array( 36 | 'type' => 'section', 37 | 'title' => __( 'Front Page Background Images', 'toolbar-extras' ), 38 | 'id' => 'aspirepro-frontpage-background-images', 39 | ), 40 | 'colors' => array( 41 | 'type' => 'section', 42 | 'title' => __( 'Colors', 'toolbar-extras' ), 43 | 'id' => 'aspirepro-colors', 44 | ), 45 | 'header_image' => array( 46 | 'type' => 'section', 47 | 'title' => __( 'Header Image', 'toolbar-extras' ), 48 | 'id' => 'aspirepro-header-image', 49 | ), 50 | ); 51 | 52 | /** Merge and return with all items */ 53 | return array_merge( $items, $aspirepro_items ); 54 | 55 | } // end function 56 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-atmosphere-pro.php: -------------------------------------------------------------------------------- 1 | array( 33 | 'type' => 'section', 34 | 'title' => __( 'Colors', 'toolbar-extras' ), 35 | 'id' => 'atmospherepro-colors', 36 | ), 37 | 'header_image' => array( 38 | 'type' => 'section', 39 | 'title' => __( 'Header Image', 'toolbar-extras' ), 40 | 'id' => 'atmospherepro-header-image', 41 | ), 42 | 'atmosphere-image' => array( 43 | 'type' => 'section', 44 | 'title' => __( 'Front Page Image', 'toolbar-extras' ), 45 | 'id' => 'atmospherepro-front-page-image', 46 | ), 47 | 'background_image' => array( 48 | 'type' => 'section', 49 | 'title' => __( 'Background Image', 'toolbar-extras' ), 50 | 'id' => 'atmospherepro-background-image', 51 | ), 52 | ); 53 | 54 | /** Merge and return with all items */ 55 | return array_merge( $items, $atmospherepro_items ); 56 | 57 | } // end function 58 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-author-pro.php: -------------------------------------------------------------------------------- 1 | array( 31 | 'type' => 'section', 32 | 'title' => __( 'Colors', 'toolbar-extras' ), 33 | 'id' => 'authorpro-colors', 34 | ), 35 | 'header_image' => array( 36 | 'type' => 'section', 37 | 'title' => __( 'Header Image', 'toolbar-extras' ), 38 | 'id' => 'authorpro-header-image', 39 | ), 40 | 'background_image' => array( 41 | 'type' => 'section', 42 | 'title' => __( 'Background Image', 'toolbar-extras' ), 43 | 'id' => 'authorpro-background-image', 44 | ), 45 | ); 46 | 47 | /** Merge and return with all items */ 48 | return array_merge( $items, $authorpro_items ); 49 | 50 | } // end function 51 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-authority-pro.php: -------------------------------------------------------------------------------- 1 | array( 33 | 'type' => 'panel', 34 | 'title' => ddw_tbex_string_genesis_child_theme_settings(), 35 | 'id' => 'authoritypro-settings', 36 | ), 37 | 'colors' => array( 38 | 'type' => 'section', 39 | 'title' => __( 'Colors', 'toolbar-extras' ), 40 | 'id' => 'authoritypro-colors', 41 | ), 42 | 'header_image' => array( 43 | 'type' => 'section', 44 | 'title' => __( 'Header Image', 'toolbar-extras' ), 45 | 'id' => 'authoritypro-header-image', 46 | ), 47 | ); 48 | 49 | /** Merge and return with all items */ 50 | return array_merge( $items, $authoritypro_items ); 51 | 52 | } // end function 53 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-boss-pro.php: -------------------------------------------------------------------------------- 1 | array( 31 | 'type' => 'section', 32 | 'title' => esc_attr__( 'Front Page Images', 'toolbar-extras' ), 33 | 'id' => 'bosspro-images', 34 | ), 35 | 'colors' => array( 36 | 'type' => 'section', 37 | 'title' => __( 'Colors', 'toolbar-extras' ), 38 | 'id' => 'bosspro-colors', 39 | ), 40 | 'header_image' => array( 41 | 'type' => 'section', 42 | 'title' => __( 'Header Image', 'toolbar-extras' ), 43 | 'id' => 'bosspro-header-image', 44 | ), 45 | ); 46 | 47 | /** Merge and return with all items */ 48 | return array_merge( $items, $bosspro_items ); 49 | 50 | } // end function 51 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-breakthrough-pro.php: -------------------------------------------------------------------------------- 1 | array( 33 | 'type' => 'panel', 34 | 'title' => ddw_tbex_string_genesis_child_theme_settings(), 35 | 'id' => 'breakthroughpro-settings', 36 | ), 37 | 'colors' => array( 38 | 'type' => 'section', 39 | 'title' => __( 'Colors', 'toolbar-extras' ), 40 | 'id' => 'breakthroughpro-colors', 41 | ), 42 | 'background_image' => array( 43 | 'type' => 'section', 44 | 'title' => __( 'Background Image', 'toolbar-extras' ), 45 | 'id' => 'breakthroughpro-background-image', 46 | ), 47 | ); 48 | 49 | /** Merge and return with all items */ 50 | return array_merge( $items, $btpro_items ); 51 | 52 | } // end function 53 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-business-pro.php: -------------------------------------------------------------------------------- 1 | array( 31 | 'type' => 'section', 32 | 'title' => __( 'Colors', 'toolbar-extras' ), 33 | 'id' => 'businesspro-colors', 34 | ), 35 | 'header_image' => array( 36 | 'type' => 'section', 37 | 'title' => __( 'Header Media', 'toolbar-extras' ), 38 | 'id' => 'businesspro-header-image', 39 | ), 40 | 'background_image' => array( 41 | 'type' => 'section', 42 | 'title' => __( 'Background Image', 'toolbar-extras' ), 43 | 'id' => 'businesspro-background-image', 44 | ), 45 | ); 46 | 47 | /** Merge and return with all items */ 48 | return array_merge( $items, $businesspro_items ); 49 | 50 | } // end function 51 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-cafe-pro.php: -------------------------------------------------------------------------------- 1 | array( 30 | 'type' => 'section', 31 | 'title' => __( 'Background Images', 'toolbar-extras' ), 32 | 'id' => 'cafepro-background-images', 33 | ), 34 | 'colors' => array( 35 | 'type' => 'section', 36 | 'title' => __( 'Colors', 'toolbar-extras' ), 37 | 'id' => 'cafepro-colors', 38 | ), 39 | 'header_image' => array( 40 | 'type' => 'section', 41 | 'title' => __( 'Header Image', 'toolbar-extras' ), 42 | 'id' => 'cafepro-header-image', 43 | ), 44 | ); 45 | 46 | /** Merge and return with all items */ 47 | return array_merge( $items, $cafepro_items ); 48 | 49 | } // end function 50 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-corporate-pro.php: -------------------------------------------------------------------------------- 1 | array( 31 | 'type' => 'section', 32 | 'title' => __( 'Colors', 'toolbar-extras' ), 33 | 'id' => 'corporatepro-colors', 34 | ), 35 | 'header_image' => array( 36 | 'type' => 'section', 37 | 'title' => __( 'Header Media', 'toolbar-extras' ), 38 | 'id' => 'corporatepro-header-image', 39 | ), 40 | 'background_image' => array( 41 | 'type' => 'section', 42 | 'title' => __( 'Background Image', 'toolbar-extras' ), 43 | 'id' => 'corporatepro-background-image', 44 | ), 45 | ); 46 | 47 | /** Merge and return with all items */ 48 | return array_merge( $items, $corporatepro_items ); 49 | 50 | } // end function 51 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-course-maker-pro.php: -------------------------------------------------------------------------------- 1 | array( 30 | 'type' => 'section', 31 | 'title' => __( 'Course Maker Pro Settings', 'toolbar-extras' ), 32 | 'id' => 'cmpro-course-maker-pro-settings', 33 | ), 34 | 'color_options_section' => array( 35 | 'type' => 'section', 36 | 'title' => __( 'Color Palette', 'toolbar-extras' ), 37 | 'id' => 'cmpro-color-options', 38 | ), 39 | ); 40 | 41 | /** Merge and return with all items */ 42 | return array_merge( $items, $cmpro_items ); 43 | 44 | } // end function 45 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-daily-dish-pro.php: -------------------------------------------------------------------------------- 1 | array( 31 | 'type' => 'section', 32 | 'title' => ddw_tbex_string_genesis_child_theme_settings(), 33 | 'id' => 'dailydishpro-settings', 34 | ), 35 | 'colors' => array( 36 | 'type' => 'section', 37 | 'title' => __( 'Colors', 'toolbar-extras' ), 38 | 'id' => 'dailydishpro-colors', 39 | ), 40 | 'header_image' => array( 41 | 'type' => 'section', 42 | 'title' => __( 'Header Image', 'toolbar-extras' ), 43 | 'id' => 'dailydishpro-header-image', 44 | ), 45 | 'background_image' => array( 46 | 'type' => 'section', 47 | 'title' => __( 'Background Image', 'toolbar-extras' ), 48 | 'id' => 'dailydishpro-background-image', 49 | ), 50 | ); 51 | 52 | /** Merge and return with all items */ 53 | return array_merge( $items, $dailydishpro_items ); 54 | 55 | } // end function 56 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-digital-pro.php: -------------------------------------------------------------------------------- 1 | array( 31 | 'type' => 'section', 32 | 'title' => __( 'Colors', 'toolbar-extras' ), 33 | 'id' => 'digitalpro-colors', 34 | ), 35 | 'header_image' => array( 36 | 'type' => 'section', 37 | 'title' => __( 'Header Image', 'toolbar-extras' ), 38 | 'id' => 'digitalpro-header-image', 39 | ), 40 | 'digital-image' => array( 41 | 'type' => 'section', 42 | 'title' => __( 'Front Page Image', 'toolbar-extras' ), 43 | 'id' => 'digitalpro-front-page-image', 44 | ), 45 | 'digital_journal_section' => array( 46 | 'type' => 'section', 47 | 'title' => __( 'Front Page Content Settings', 'toolbar-extras' ), 48 | 'id' => 'digitalpro-front-page-content', 49 | ), 50 | ); 51 | 52 | /** Merge and return with all items */ 53 | return array_merge( $items, $digitalpro_items ); 54 | 55 | } // end function 56 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-divine.php: -------------------------------------------------------------------------------- 1 | array( 30 | 'type' => 'section', 31 | 'title' => __( 'Colors', 'toolbar-extras' ), 32 | 'id' => 'divinetheme-colors', 33 | ), 34 | 'header_image' => array( 35 | 'type' => 'section', 36 | 'title' => __( 'Header Image', 'toolbar-extras' ), 37 | 'id' => 'divinetheme-header-image', 38 | ), 39 | 'background_image' => array( 40 | 'type' => 'section', 41 | 'title' => __( 'Background Image', 'toolbar-extras' ), 42 | 'id' => 'divinetheme-background-image', 43 | ), 44 | ); 45 | 46 | /** Merge and return with all items */ 47 | return array_merge( $items, $divine_items ); 48 | 49 | } // end function 50 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-essence-pro.php: -------------------------------------------------------------------------------- 1 | array( 31 | 'type' => 'panel', 32 | 'title' => ddw_tbex_string_genesis_child_theme_settings(), 33 | 'id' => 'essencepro-settings', 34 | ), 35 | 'colors' => array( 36 | 'type' => 'section', 37 | 'title' => __( 'Colors', 'toolbar-extras' ), 38 | 'id' => 'essencepro-colors', 39 | ), 40 | ); 41 | 42 | /** Merge and return with all items */ 43 | return array_merge( $items, $essencepro_items ); 44 | 45 | } // end function 46 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-executive-pro.php: -------------------------------------------------------------------------------- 1 | array( 31 | 'type' => 'section', 32 | 'title' => __( 'Colors', 'toolbar-extras' ), 33 | 'id' => 'executivepro-colors', 34 | ), 35 | 'header_image' => array( 36 | 'type' => 'section', 37 | 'title' => __( 'Header Image', 'toolbar-extras' ), 38 | 'id' => 'executivepro-header-image', 39 | ), 40 | 'background_image' => array( 41 | 'type' => 'section', 42 | 'title' => __( 'Background Image', 'toolbar-extras' ), 43 | 'id' => 'executivepro-background-image', 44 | ), 45 | ); 46 | 47 | /** Merge and return with all items */ 48 | return array_merge( $items, $executivepro_items ); 49 | 50 | } // end function 51 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-gallery-pro.php: -------------------------------------------------------------------------------- 1 | array( 31 | 'type' => 'section', 32 | 'title' => __( 'Front Page Background Images', 'toolbar-extras' ), 33 | 'id' => 'gallerypro-frontpage-background-images', 34 | ), 35 | 'bbs_front_page_content_settings' => array( 36 | 'type' => 'section', 37 | 'title' => __( 'Front Page Content Settings', 'toolbar-extras' ), 38 | 'id' => 'gallerypro-front-page-content', 39 | ), 40 | 'colors' => array( 41 | 'type' => 'section', 42 | 'title' => __( 'Colors', 'toolbar-extras' ), 43 | 'id' => 'gallerypro-colors', 44 | ), 45 | 'header_image' => array( 46 | 'type' => 'section', 47 | 'title' => __( 'Header Image', 'toolbar-extras' ), 48 | 'id' => 'gallerypro-header-image', 49 | ), 50 | ); 51 | 52 | /** Merge and return with all items */ 53 | return array_merge( $items, $gallerypro_items ); 54 | 55 | } // end function 56 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-hello-pro.php: -------------------------------------------------------------------------------- 1 | array( 30 | 'type' => 'section', 31 | 'title' => __( 'Front Page Background Images', 'toolbar-extras' ), 32 | 'id' => 'hellopro-front-background', 33 | ), 34 | 'header_settings' => array( 35 | 'type' => 'section', 36 | 'title' => __( 'Sticky Header', 'toolbar-extras' ), 37 | 'id' => 'hellopro-sticky-header', 38 | ), 39 | 'colors' => array( 40 | 'type' => 'section', 41 | 'title' => __( 'Colors', 'toolbar-extras' ), 42 | 'id' => 'hellopro-colors', 43 | ), 44 | 'header_image' => array( 45 | 'type' => 'section', 46 | 'title' => __( 'Header Image', 'toolbar-extras' ), 47 | 'id' => 'hellopro-header-image', 48 | ), 49 | ); 50 | 51 | /** Merge and return with all items */ 52 | return array_merge( $items, $hellopro_items ); 53 | 54 | } // end function 55 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-infinity-pro.php: -------------------------------------------------------------------------------- 1 | array( 31 | 'type' => 'section', 32 | 'title' => __( 'Front Page Background Images', 'toolbar-extras' ), 33 | 'id' => 'infinitypro-frontpage-background-images', 34 | ), 35 | 'colors' => array( 36 | 'type' => 'section', 37 | 'title' => __( 'Colors', 'toolbar-extras' ), 38 | 'id' => 'infinitypro-colors', 39 | ), 40 | 'header_image' => array( 41 | 'type' => 'section', 42 | 'title' => __( 'Header Image', 'toolbar-extras' ), 43 | 'id' => 'infinitypro-header-image', 44 | ), 45 | ); 46 | 47 | /** Merge and return with all items */ 48 | return array_merge( $items, $infinitypro_items ); 49 | 50 | } // end function 51 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-kreativ-pro.php: -------------------------------------------------------------------------------- 1 | array( 30 | 'type' => 'section', 31 | 'title' => __( 'Front Page Images', 'toolbar-extras' ), 32 | 'id' => 'kreativpro-front-images', 33 | ), 34 | 'kreativ_sticky_header_section' => array( 35 | 'type' => 'section', 36 | 'title' => __( 'Sticky Header', 'toolbar-extras' ), 37 | 'id' => 'kreativpro-sticky-header', 38 | ), 39 | 'colors' => array( 40 | 'type' => 'section', 41 | 'title' => __( 'Colors', 'toolbar-extras' ), 42 | 'id' => 'kreativpro-colors', 43 | ), 44 | 'header_image' => array( 45 | 'type' => 'section', 46 | 'title' => __( 'Header Image', 'toolbar-extras' ), 47 | 'id' => 'kreativpro-header-image', 48 | ), 49 | ); 50 | 51 | /** Merge and return with all items */ 52 | return array_merge( $items, $kreativpro_items ); 53 | 54 | } // end function 55 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-lifestyle-pro.php: -------------------------------------------------------------------------------- 1 | array( 31 | 'type' => 'section', 32 | 'title' => __( 'Colors', 'toolbar-extras' ), 33 | 'id' => 'lifestylepro-colors', 34 | ), 35 | 'header_image' => array( 36 | 'type' => 'section', 37 | 'title' => __( 'Header Image', 'toolbar-extras' ), 38 | 'id' => 'lifestylepro-header-image', 39 | ), 40 | 'background_image' => array( 41 | 'type' => 'section', 42 | 'title' => __( 'Background Image', 'toolbar-extras' ), 43 | 'id' => 'lifestylepro-background-image', 44 | ), 45 | ); 46 | 47 | /** Merge and return with all items */ 48 | return array_merge( $items, $lifestylepro_items ); 49 | 50 | } // end function 51 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-magazine-pro.php: -------------------------------------------------------------------------------- 1 | array( 31 | 'type' => 'section', 32 | 'title' => __( 'Colors', 'toolbar-extras' ), 33 | 'id' => 'magazinepro-colors', 34 | ), 35 | 'header_image' => array( 36 | 'type' => 'section', 37 | 'title' => __( 'Header Image', 'toolbar-extras' ), 38 | 'id' => 'magazinepro-header-image', 39 | ), 40 | ); 41 | 42 | /** Merge and return with all items */ 43 | return array_merge( $items, $magazinepro_items ); 44 | 45 | } // end function 46 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-maker-pro.php: -------------------------------------------------------------------------------- 1 | array( 31 | 'type' => 'section', 32 | 'title' => __( 'Colors', 'toolbar-extras' ), 33 | 'id' => 'makerpro-colors', 34 | ), 35 | 'header_image' => array( 36 | 'type' => 'section', 37 | 'title' => __( 'Header Image', 'toolbar-extras' ), 38 | 'id' => 'makerpro-header-image', 39 | ), 40 | ); 41 | 42 | /** Merge and return with all items */ 43 | return array_merge( $items, $makerpro_items ); 44 | 45 | } // end function 46 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-market-theme.php: -------------------------------------------------------------------------------- 1 | array( 31 | 'type' => 'section', 32 | 'title' => __( 'Front Page Content Settings', 'toolbar-extras' ), 33 | 'id' => 'markettheme-front-page-content', 34 | ), 35 | 'colors' => array( 36 | 'type' => 'section', 37 | 'title' => __( 'Colors', 'toolbar-extras' ), 38 | 'id' => 'markettheme-colors', 39 | ), 40 | 'header_image' => array( 41 | 'type' => 'section', 42 | 'title' => __( 'Header Image', 'toolbar-extras' ), 43 | 'id' => 'markettheme-header-image', 44 | ), 45 | 'background_image' => array( 46 | 'type' => 'section', 47 | 'title' => __( 'Background Image', 'toolbar-extras' ), 48 | 'id' => 'markettheme-background-image', 49 | ), 50 | ); 51 | 52 | /** Merge and return with all items */ 53 | return array_merge( $items, $market_items ); 54 | 55 | } // end function 56 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-metro-pro.php: -------------------------------------------------------------------------------- 1 | array( 31 | 'type' => 'section', 32 | 'title' => __( 'Colors', 'toolbar-extras' ), 33 | 'id' => 'metropro-colors', 34 | ), 35 | 'header_image' => array( 36 | 'type' => 'section', 37 | 'title' => __( 'Header Image', 'toolbar-extras' ), 38 | 'id' => 'metropro-header-image', 39 | ), 40 | 'metro-image' => array( 41 | 'type' => 'section', 42 | 'title' => __( 'Backstretch Image', 'toolbar-extras' ), 43 | 'id' => 'metropro-backstretch-image', 44 | ), 45 | 'background_image' => array( 46 | 'type' => 'section', 47 | 'title' => __( 'Background Image', 'toolbar-extras' ), 48 | 'id' => 'metropro-background-image', 49 | ), 50 | ); 51 | 52 | /** Merge and return with all items */ 53 | return array_merge( $items, $metropro_items ); 54 | 55 | } // end function 56 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-monochrome-pro.php: -------------------------------------------------------------------------------- 1 | array( 31 | 'type' => 'section', 32 | 'title' => ddw_tbex_string_genesis_child_theme_settings(), 33 | 'id' => 'monochromepro-settings', 34 | ), 35 | 'monochrome-settings' => array( 36 | 'type' => 'section', 37 | 'title' => __( 'Front Page Background Images', 'toolbar-extras' ), 38 | 'id' => 'monochromepro-frontpage-background-images', 39 | ), 40 | 'colors' => array( 41 | 'type' => 'section', 42 | 'title' => __( 'Colors', 'toolbar-extras' ), 43 | 'id' => 'monochromepro-colors', 44 | ), 45 | 'header_image' => array( 46 | 'type' => 'section', 47 | 'title' => __( 'Header Image', 'toolbar-extras' ), 48 | 'id' => 'monochromepro-header-image', 49 | ), 50 | ); 51 | 52 | /** Merge and return with all items */ 53 | return array_merge( $items, $monochromepro_items ); 54 | 55 | } // end function 56 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-niche-pro.php: -------------------------------------------------------------------------------- 1 | array( 31 | 'type' => 'section', 32 | 'title' => __( 'Colors', 'toolbar-extras' ), 33 | 'id' => 'nichepro-colors', 34 | ), 35 | 'header_image' => array( 36 | 'type' => 'section', 37 | 'title' => __( 'Header Image', 'toolbar-extras' ), 38 | 'id' => 'nichepro-header-image', 39 | ), 40 | ); 41 | 42 | /** Merge and return with all items */ 43 | return array_merge( $items, $nichepro_items ); 44 | 45 | } // end function 46 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-outfitter-pro.php: -------------------------------------------------------------------------------- 1 | array( 31 | 'type' => 'section', 32 | 'title' => ddw_tbex_string_genesis_child_theme_settings(), 33 | 'id' => 'outfitterpro-settings', 34 | ), 35 | 'colors' => array( 36 | 'type' => 'section', 37 | 'title' => __( 'Colors', 'toolbar-extras' ), 38 | 'id' => 'outfitterpro-colors', 39 | ), 40 | 'header_image' => array( 41 | 'type' => 'section', 42 | 'title' => __( 'Header Image', 'toolbar-extras' ), 43 | 'id' => 'outfitterpro-header-image', 44 | ), 45 | 'background_image' => array( 46 | 'type' => 'section', 47 | 'title' => __( 'Background Image', 'toolbar-extras' ), 48 | 'id' => 'outfitterpro-background-image', 49 | ), 50 | ); 51 | 52 | /** Merge and return with all items */ 53 | return array_merge( $items, $outfitterpro_items ); 54 | 55 | } // end function 56 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-parallax-pro.php: -------------------------------------------------------------------------------- 1 | array( 31 | 'type' => 'section', 32 | 'title' => __( 'Front Page Background Images', 'toolbar-extras' ), 33 | 'id' => 'parallaxpro-frontpage-background-images', 34 | ), 35 | 'colors' => array( 36 | 'type' => 'section', 37 | 'title' => __( 'Colors', 'toolbar-extras' ), 38 | 'id' => 'parallaxpro-colors', 39 | ), 40 | 'header_image' => array( 41 | 'type' => 'section', 42 | 'title' => __( 'Header Image', 'toolbar-extras' ), 43 | 'id' => 'parallaxpro-header-image', 44 | ), 45 | ); 46 | 47 | /** Merge and return with all items */ 48 | return array_merge( $items, $parallaxpro_items ); 49 | 50 | } // end function 51 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-pretty-chic.php: -------------------------------------------------------------------------------- 1 | array( 30 | 'type' => 'section', 31 | 'title' => __( 'Header Image', 'toolbar-extras' ), 32 | 'id' => 'prettychic-header-image', 33 | ), 34 | ); 35 | 36 | /** Merge and return with all items */ 37 | return array_merge( $items, $pc_items ); 38 | 39 | } // end function 40 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-pretty-creative.php: -------------------------------------------------------------------------------- 1 | array( 30 | 'type' => 'section', 31 | 'title' => __( 'Home Top', 'toolbar-extras' ), 32 | 'id' => 'prettycreative-home-top', 33 | ), 34 | 'colors' => array( 35 | 'type' => 'section', 36 | 'title' => __( 'Colors', 'toolbar-extras' ), 37 | 'id' => 'prettycreative-colors', 38 | ), 39 | 'header_image' => array( 40 | 'type' => 'section', 41 | 'title' => __( 'Header Image', 'toolbar-extras' ), 42 | 'id' => 'prettycreative-header-image', 43 | ), 44 | ); 45 | 46 | /** Merge and return with all items */ 47 | return array_merge( $items, $prettycreative_items ); 48 | 49 | } // end function 50 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-refined-pro.php: -------------------------------------------------------------------------------- 1 | array( 31 | 'type' => 'section', 32 | 'title' => __( 'Front Page Content Settings', 'toolbar-extras' ), 33 | 'id' => 'refinedpro-front-page-content', 34 | ), 35 | 'colors' => array( 36 | 'type' => 'section', 37 | 'title' => __( 'Colors', 'toolbar-extras' ), 38 | 'id' => 'refinedpro-colors', 39 | ), 40 | 'header_image' => array( 41 | 'type' => 'section', 42 | 'title' => __( 'Header Image', 'toolbar-extras' ), 43 | 'id' => 'refinedpro-header-image', 44 | ), 45 | 'background_image' => array( 46 | 'type' => 'section', 47 | 'title' => __( 'Background Image', 'toolbar-extras' ), 48 | 'id' => 'refinedpro-background-image', 49 | ), 50 | ); 51 | 52 | /** Merge and return with all items */ 53 | return array_merge( $items, $refinedpro_items ); 54 | 55 | } // end function 56 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-revolution-pro.php: -------------------------------------------------------------------------------- 1 | array( 30 | 'type' => 'section', 31 | 'title' => __( 'Colors', 'toolbar-extras' ), 32 | 'id' => 'revolutionpro-colors', 33 | ), 34 | 'header_image' => array( 35 | 'type' => 'section', 36 | 'title' => __( 'Header Image', 'toolbar-extras' ), 37 | 'id' => 'revolutionpro-header-image', 38 | ), 39 | ); 40 | 41 | /** Merge and return with all items */ 42 | return array_merge( $items, $revpro_items ); 43 | 44 | } // end function 45 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-sample.php: -------------------------------------------------------------------------------- 1 | array( 31 | 'type' => 'section', 32 | 'title' => __( 'Colors', 'toolbar-extras' ), 33 | 'id' => 'genesis-sample-colors', 34 | ), 35 | 'custom_css' => array( 36 | 'type' => 'section', 37 | 'title' => __( 'Custom CSS', 'toolbar-extras' ), 38 | 'id' => 'genesis-sample-css', 39 | ), 40 | ); 41 | 42 | /** Merge and return with all items */ 43 | return array_merge( $items, $sample_items ); 44 | 45 | } // end function 46 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-showcase-pro.php: -------------------------------------------------------------------------------- 1 | array( 31 | 'type' => 'section', 32 | 'title' => __( 'Front Page Header Image', 'toolbar-extras' ), 33 | 'id' => 'showcasepro-frontpage-header-image', 34 | ), 35 | 'colors' => array( 36 | 'type' => 'section', 37 | 'title' => __( 'Colors', 'toolbar-extras' ), 38 | 'id' => 'showcasepro-colors', 39 | ), 40 | 'header_image' => array( 41 | 'type' => 'section', 42 | 'title' => __( 'Header Image', 'toolbar-extras' ), 43 | 'id' => 'showcasepro-header-image', 44 | ), 45 | ); 46 | 47 | /** Merge and return with all items */ 48 | return array_merge( $items, $showcasepro_items ); 49 | 50 | } // end function 51 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-smart-passive-income-pro.php: -------------------------------------------------------------------------------- 1 | array( 31 | 'type' => 'section', 32 | 'title' => __( 'Front Page Background Image', 'toolbar-extras' ), 33 | 'id' => 'spipro-frontpage-background-image', 34 | ), 35 | 'colors' => array( 36 | 'type' => 'section', 37 | 'title' => __( 'Colors', 'toolbar-extras' ), 38 | 'id' => 'spipro-colors', 39 | ), 40 | 'header_image' => array( 41 | 'type' => 'section', 42 | 'title' => __( 'Header Image', 'toolbar-extras' ), 43 | 'id' => 'spipro-header-image', 44 | ), 45 | ); 46 | 47 | /** Merge and return with all items */ 48 | return array_merge( $items, $spipro_items ); 49 | 50 | } // end function 51 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-studio-pro.php: -------------------------------------------------------------------------------- 1 | array( 31 | 'type' => 'section', 32 | 'title' => __( 'Colors', 'toolbar-extras' ), 33 | 'id' => 'studiopro-colors', 34 | ), 35 | 'header_image' => array( 36 | 'type' => 'section', 37 | 'title' => __( 'Header Media', 'toolbar-extras' ), 38 | 'id' => 'studiopro-header-media', 39 | ), 40 | 'background_image' => array( 41 | 'type' => 'section', 42 | 'title' => __( 'Background Image', 'toolbar-extras' ), 43 | 'id' => 'studiopro-background-image', 44 | ), 45 | ); 46 | 47 | /** Merge and return with all items */ 48 | return array_merge( $items, $studiopro_items ); 49 | 50 | } // end function 51 | -------------------------------------------------------------------------------- /includes/themes-genesis/items-genesis-wellness-pro.php: -------------------------------------------------------------------------------- 1 | array( 31 | 'type' => 'section', 32 | 'title' => __( 'Front Page Background Images', 'toolbar-extras' ), 33 | 'id' => 'wellnesspro-frontpage-background-images', 34 | ), 35 | 'colors' => array( 36 | 'type' => 'section', 37 | 'title' => __( 'Colors', 'toolbar-extras' ), 38 | 'id' => 'wellnesspro-colors', 39 | ), 40 | 'header_image' => array( 41 | 'type' => 'section', 42 | 'title' => __( 'Header Image', 'toolbar-extras' ), 43 | 'id' => 'wellnesspro-header-image', 44 | ), 45 | 'background_image' => array( 46 | 'type' => 'section', 47 | 'title' => __( 'Background Image', 'toolbar-extras' ), 48 | 'id' => 'wellnesspro-background-image', 49 | ), 50 | ); 51 | 52 | /** Merge and return with all items */ 53 | return array_merge( $items, $wellnesspro_items ); 54 | 55 | } // end function 56 | -------------------------------------------------------------------------------- /includes/themes/index.php: -------------------------------------------------------------------------------- 1 |