PATH:
home
/
nappmpmd
/
mamza.xyz
/
wp-content
/
plugins
/
adfoxly
/
vendor
/
timber
/
timber
/
lib
<?php namespace Timber; /** * This is for integrating external plugins into timber * @package timber */ class Integrations { var $acf; var $coauthors_plus; public function __construct() { $this->init(); } public function init() { add_action('init', array($this, 'maybe_init_integrations')); if ( class_exists('WP_CLI_Command') ) { \WP_CLI::add_command('timber', 'Timber\Integrations\Timber_WP_CLI_Command'); } } public function maybe_init_integrations() { if ( class_exists('ACF') ) { $this->acf = new Integrations\ACF(); } if ( class_exists('CoAuthors_Plus') ) { $this->coauthors_plus = new Integrations\CoAuthorsPlus(); } $this->wpml = new Integrations\WPML(); } }
[-] PostGetter.php
[edit]
[-] PostPreview.php
[edit]
[-] URLHelper.php
[edit]
[-] Theme.php
[edit]
[-] Term.php
[edit]
[-] Loader.php
[edit]
[-] MenuItem.php
[edit]
[+]
..
[-] ImageHelper.php
[edit]
[-] User.php
[edit]
[-] Archives.php
[edit]
[-] CoreInterface.php
[edit]
[+]
Integrations
[-] CommentThread.php
[edit]
[-] Integrations.php
[edit]
[-] Menu.php
[edit]
[-] Pagination.php
[edit]
[-] Twig_Filter.php
[edit]
[-] Image.php
[edit]
[-] TermGetter.php
[edit]
[-] Twig_Function.php
[edit]
[+]
Image
[-] PathHelper.php
[edit]
[-] PostsIterator.php
[edit]
[-] PostQuery.php
[edit]
[-] Twig.php
[edit]
[-] Admin.php
[edit]
[-] Post.php
[edit]
[+]
Cache
[-] Comment.php
[edit]
[-] Helper.php
[edit]
[-] PostType.php
[edit]
[-] Timber.php
[edit]
[-] TextHelper.php
[edit]
[-] Request.php
[edit]
[-] Site.php
[edit]
[-] PostCollection.php
[edit]
[-] QueryIterator.php
[edit]
[-] FunctionWrapper.php
[edit]
[-] LocationManager.php
[edit]
[-] Core.php
[edit]