Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save badabingbreda/48cfcec1be146a0abeaa123f456796b9 to your computer and use it in GitHub Desktop.
Save badabingbreda/48cfcec1be146a0abeaa123f456796b9 to your computer and use it in GitHub Desktop.
Toolbox Docs: Plugin Development Alias Module Plugin initalization
<?php
/**
Plugin Name: Toolbox Starter Plugin
Plugin URI: https://www.toolboxstarterplugin.com/
Description: Starter Plugin for Toolbox, Using Timber
Version: 1.0
Author: Didou Schol
Text Domain: textdomain
Domain Path: /languages
Author URI: https://www.badabing.nl
*/
define( 'TOOLBOXSTARTER_VERSION' , '1.0' );
define( 'TOOLBOXSTARTER_DIR' , plugin_dir_path( __FILE__ ) );
define( 'TOOLBOXSTARTER_FILE' , __FILE__ );
define( 'TOOLBOXSTARTER_URL' , plugins_url( '/', __FILE__ ) );
// include the starter.inc.php where functions are namespaced
include_once( 'lib/starter.inc.php' );
/**
* adds the plugins twig_templates directory to the paths where Timber will look for templates
*/
add_filter( 'toolbox_twig_views_locations' , '\starter\add_twigs_dir' , 25 ,1 );
/**
* add plugin twig filters
*/
add_filter( 'timber/twig' , '\starter\add_twig_filters' );
/**
* register alias modules with a high priority #
*/
add_action( 'init' , '\starter\register_alias_modules' , 100 , 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment