E questo è il codice php del modello accesskeys che porta la firma di...
<?php
/**
*
* @version $Id: mod_accesskeys.php 36 2008-04-03 06:26:47Z elpaso $
* @package JoomlaFAP
* @copyright Copyright (C) 2008 Alessandro Pasotti
http://www.itopen.it* @license GNU/AGPL
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
// Let's check if com_accesskeys is installed, skip otherwise
if(JComponentHelper::isEnabled('com_accesskeys', true)){
// Include the functions only once
require_once( dirname(__FILE__).DS.'helper.php' );
$aklist = modAccesskeysHelper::getAccesskeys( $params );
require( JModuleHelper::getLayoutPath( 'mod_accesskeys' ) );
} else {
die('Error');
// This module needs com_accesskeys, so this is an error, we should warn the user somehow
}
?>