creativecontactform.php
1.02 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
32
33
34
35
36
37
38
39
<?php
/**
* Joomla! component Creative Contact Form
*
* @version $Id: 2012-04-05 14:30:25 svn $
* @author creative-solutions.net
* @package Creative Contact Form
* @subpackage com_creativecontactform
* @license GNU/GPL
*
*/
// no direct access
defined('_JEXEC') or die('Restircted access');
/*
* Define constants for all pages
*/
if(!defined('DS')){
define('DS',DIRECTORY_SEPARATOR);
}
define('JV', (version_compare(JVERSION, '3', 'l')) ? 'j2' : 'j3');
// Require the base controller
require_once JPATH_COMPONENT.DS.'helpers'.DS.'helper.php';
// Initialize the controller
$controller = JControllerLegacy::getInstance('creativecontactform');
$document = JFactory::getDocument();
$cssFile = JURI::base(true).'/components/com_creativecontactform/assets/css/icons_'.JV.'.css';
$document->addStyleSheet($cssFile, 'text/css', null, array());
// Perform the Request task
if(JV == 'j2')
$controller->execute( JRequest::getCmd('task'));
else
$controller->execute(JFactory::getApplication()->input->get('task'));
$controller->redirect();