HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux wordpress-ubuntu-s-2vcpu-4gb-fra1-01 5.4.0-169-generic #187-Ubuntu SMP Thu Nov 23 14:52:28 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/vcz/wp-content/themes/volonteka/vendor/upstatement/routes/readme.txt
=== Routes ===
Contributors: jarednova
Tags: admin, configuration
Requires at least: 4.0
Stable tag: 0.3.1
Tested up to: 4.5
PHP version: 5.3.0 or greater
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Simple ways to add HTTP routes to your WordPress Theme

== Description ==
Simple ways to make admin customizations for WordPress. You know all that brain space you saved for rewrite regex? Now you can simply...

* On [GitHub](https://github.com/upstatement/routes)

### Usage
<code><pre>
/* functions.php */
Routes::map('myfoo/bar', 'my_callback_function');
Routes::map('my-events/:event', function($params) {
    $event_slug = $params['event'];
    $event = new ECP_Event($event_slug);
    Routes::load('single.php', array('event' => $event));
});
</code></pre>


== Installation ==

1. Activate the plugin through the 'Plugins' menu in WordPress
2. Add custom routes in a theme file like functions.php

== Support ==

Please use the [GitHub repo](https://github.com/upstatement/routes/issues?state=open) to file bugs or questions.