?
Path : /home/admin/public_html/old/administrator/components/com_jupgrade/extensions/ |
Current File : /home/admin/public_html/old/administrator/components/com_jupgrade/extensions/com_redform.php |
<?php /** * jUpgrade * * @version $Id: * @package MatWare * @subpackage com_jupgrade * @copyright Copyright 2006 - 2011 Matias Aguirre. All rights reserved. * @license GNU General Public License version 2 or later. * @author Matias Aguirre <maguirre@matware.com.ar> * @link http://www.matware.com.ar */ // Check to ensure this file is within the rest of the framework defined('JPATH_BASE') or die(); /** * jUpgrade class for RedForm migration * * This class migrates the RedForm extension * * @since 1.2.3 */ class jUpgradeComponentRedform extends jUpgradeExtensions { /** * Check if extension migration is supported. * * @return boolean * @since 1.2.3 */ protected function detectExtension() { return true; } /** * Migrate tables * * @return boolean * @since 1.2.3 */ public function migrateExtensionCustom() { return true; } }