Class **Phalcon\\Mvc\\Router\\Group** ===================================== Helper class to create a group of routes with common attributes .. code-block:: php 'blog', 'controller' => 'index' )); //All the routes start with /blog $blog->setPrefix('/blog'); //Add a route to the group $blog->add('/save', array( 'action' => 'save' )); //Add another route to the group $blog->add('/edit/{id}', array( 'action' => 'edit' )); //This route maps to a controller different than the default $blog->add('/blog', array( 'controller' => 'about', 'action' => 'index' )); //Add the group to the router $router->mount($blog); Methods ------- public **__construct** ([*unknown* $paths]) Phalcon\\Mvc\\Router\\Group constructor public :doc:`Phalcon\\Mvc\\Router\\Group ` **setHostname** (*unknown* $hostname) Set a hostname restriction for all the routes in the group public *string* **getHostname** () Returns the hostname restriction public :doc:`Phalcon\\Mvc\\Router\\Group ` **setPrefix** (*unknown* $prefix) Set a common uri prefix for all the routes in this group public *string* **getPrefix** () Returns the common prefix for all the routes public :doc:`Phalcon\\Mvc\\Router\\Group ` **beforeMatch** (*unknown* $beforeMatch) Set a before-match condition for the whole group public *string* **getBeforeMatch** () Returns the before-match condition if any public :doc:`Phalcon\\Mvc\\Router\\Group ` **setPaths** (*unknown* $paths) Set common paths for all the routes in the group public *array|string* **getPaths** () Returns the common paths defined for this group public :doc:`Phalcon\\Mvc\\Router\\Route ` [] **getRoutes** () Returns the routes added to the group protected :doc:`Phalcon\\Mvc\\Router\\Route ` **_addRoute** (*unknown* $pattern, [*unknown* $paths], [*unknown* $httpMethods]) Adds a route applying the common attributes public :doc:`Phalcon\\Mvc\\Router\\Route ` **add** (*unknown* $pattern, [*unknown* $paths], [*unknown* $httpMethods]) Adds a route to the router on any HTTP method .. code-block:: php add('/about', 'About::index'); public :doc:`Phalcon\\Mvc\\Router\\Route ` **addGet** (*unknown* $pattern, [*unknown* $paths]) Adds a route to the router that only match if the HTTP method is GET public :doc:`Phalcon\\Mvc\\Router\\Route ` **addPost** (*unknown* $pattern, [*unknown* $paths]) Adds a route to the router that only match if the HTTP method is POST public :doc:`Phalcon\\Mvc\\Router\\Route ` **addPut** (*unknown* $pattern, [*unknown* $paths]) Adds a route to the router that only match if the HTTP method is PUT public :doc:`Phalcon\\Mvc\\Router\\Route ` **addPatch** (*unknown* $pattern, [*unknown* $paths]) Adds a route to the router that only match if the HTTP method is PATCH public :doc:`Phalcon\\Mvc\\Router\\Route ` **addDelete** (*unknown* $pattern, [*unknown* $paths]) Adds a route to the router that only match if the HTTP method is DELETE public :doc:`Phalcon\\Mvc\\Router\\Route ` **addOptions** (*unknown* $pattern, [*unknown* $paths]) Add a route to the router that only match if the HTTP method is OPTIONS public :doc:`Phalcon\\Mvc\\Router\\Route ` **addHead** (*unknown* $pattern, [*unknown* $paths]) Adds a route to the router that only match if the HTTP method is HEAD public **clear** () Removes all the pre-defined routes