controllers.txt
1 |
<?php |
---|---|
2 |
/** |
3 |
* |
4 |
* Description |
5 |
* |
6 |
* @package VirtueMart |
7 |
* @subpackage |
8 |
* @author |
9 |
* @link http://www.virtuemart.net |
10 |
* @copyright Copyright (c) 2004 - 2010 VirtueMart Team. All rights reserved. |
11 |
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php |
12 |
* VirtueMart is free software. This version may have been modified pursuant |
13 |
* to the GNU General Public License, and as distributed it includes or |
14 |
* is derivative of works licensed under the GNU General Public License or |
15 |
* other free or open source software licenses. |
16 |
* @version $Id: $ |
17 |
*/ |
18 |
|
19 |
// Check to ensure this file is included in Joomla! |
20 |
defined('_JEXEC') or die('Restricted access'); |
21 |
|
22 |
// Load the controller framework |
23 |
jimport('joomla.application.component.controller'); |
24 |
|
25 |
/** |
26 |
* Class Description |
27 |
* |
28 |
* @package VirtueMart |
29 |
* @author |
30 |
*/ |
31 |
class VirtueMartController<name> extends JController { |
32 |
|
33 |
/** |
34 |
* Method Description |
35 |
* |
36 |
* @access |
37 |
* @author |
38 |
*/ |
39 |
function __construct() { |
40 |
parent::__construct(); |
41 |
|
42 |
} |
43 |
|
44 |
|
45 |
|
46 |
/** @var */ |
47 |
; |
48 |
|
49 |
/** |
50 |
* Function Description |
51 |
* |
52 |
* @copyright |
53 |
* @author |
54 |
* @todo |
55 |
* @see |
56 |
* @access |
57 |
* @param |
58 |
* @return |
59 |
*/ |
60 |
} |
61 |
?> |