Take the 2008 Git User's Survey and help out! [ hide ]

public
Description: Midgard Components Framework 3rd generation
Homepage: http://www.midgard-project.org
Clone URL: git://github.com/bergie/midcom.git
Search Repo:
bergie (author)
Thu Apr 24 13:40:18 -0700 2008
commit  0c3d0cd4c3187a1ae4c6f413ed78c6a8ba4459f6
tree    46370e09ba6b726b0397dab390513814ed8a55ad
parent  5ac8c91deef6aee39c77c68a46436581c2a5a565
midcom / midcom_core / services / dispatcher / midgard2.php
100644 31 lines (29 sloc) 0.749 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
/**
* @package midcom_core
* @author The Midgard Project, http://www.midgard-project.org
* @copyright The Midgard Project, http://www.midgard-project.org
* @license http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License
*/
 
/**
* Midgard2 dispatcher for MidCOM 3
*
* Dispatches Midgard HTTP requests to components.
*
* @package midcom_core
*/
class midcom_core_services_dispatcher_midgard2 extends midcom_core_services_dispatcher_midgard implements midcom_core_services_dispatcher
{
    public function __construct()
    {
        if (isset($_GET))
        {
            $this->get = $_GET;
        }
 
        if (isset($_MIDGARD['argv']))
        {
            $this->argv = $_MIDGARD['argv'];
        }
    }
}
?>