-
Notifications
You must be signed in to change notification settings - Fork 0
/
mod.legacy.php
executable file
·47 lines (38 loc) · 991 Bytes
/
mod.legacy.php
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* ExpressionEngine - by EllisLab
*
* @package ExpressionEngine
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2003 - 2011, EllisLab, Inc.
* @license http://expressionengine.com/user_guide/license.html
* @link http://expressionengine.com
* @since Version 2.0
* @filesource
*/
// ------------------------------------------------------------------------
/**
* Legacy Module Front End File
*
* @package ExpressionEngine
* @subpackage Addons
* @category Module
* @author Ryan Barrington Cox
* @link
*/
class Legacy {
public $return_data;
/**
* Constructor
*/
public function __construct()
{
$this->EE =& get_instance();
}
// ----------------------------------------------------------------
/**
* Start on your custom code here...
*/
}
/* End of file mod.legacy.php */
/* Location: /system/expressionengine/third_party/legacy/mod.legacy.php */