forked from litzinger/Disposition
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmcp.disposition.php
More file actions
33 lines (27 loc) · 856 Bytes
/
mcp.disposition.php
File metadata and controls
33 lines (27 loc) · 856 Bytes
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
32
33
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
if (! defined('DISPOSITION_VERSION'))
{
// get the version from config.php
require PATH_THIRD.'disposition/config.php';
define('DISPOSITION_VERSION', $config['version']);
define('DISPOSITION_NAME', $config['name']);
define('DISPOSITION_DESCRIPTION', $config['description']);
define('DISPOSITION_DOCS_URL', $config['docs_url']);
}
/**
* ExpressionEngine Disposition Module Class
*
* @package ExpressionEngine
* @subpackage Modules
* @category Disposition
* @author Brian Litzinger
* @copyright Copyright 2011 - Brian Litzinger
* @link http://boldminded.com/add-ons/disposition
*/
class Disposition_mcp {
function Disposition_mcp()
{
$this->EE =& get_instance();
}
function index() {}
}