PATH:
home
/
nappmpmd
/
mamza.xyz
/
wp-content
/
plugins
/
adfoxly
/
vendor
/
timber
/
timber
/
lib
<?php namespace Timber; use Timber\Core; use Timber\CoreInterface; /** * TimberRequest exposes $_GET and $_POST to the context */ class Request extends Core implements CoreInterface { public $post = array(); public $get = array(); /** * Constructs a TimberRequest object * @example */ public function __construct() { $this->init(); } /** * @internal */ protected function init() { $this->post = $_POST; $this->get = $_GET; } public function __call( $field, $args ) {} public function __get( $field ) {} /** * @return boolean|null */ public function __isset( $field ) {} public function meta( $key ) {} }
[-] 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]