Example #1
0
 /**
  * Method to run after an install/update/uninstall method.
  *
  * @param string $type
  * @param string $parent
  *
  * @return void
  */
 public function postflight($type, $parent)
 {
     if (!defined("COM_CROWDFUNDING_PATH_COMPONENT_ADMINISTRATOR")) {
         define("COM_CROWDFUNDING_PATH_COMPONENT_ADMINISTRATOR", JPATH_ADMINISTRATOR . DIRECTORY_SEPARATOR . "components" . DIRECTORY_SEPARATOR . "com_crowdfunding");
     }
     // Register Component helpers
     JLoader::register("CrowdfundingInstallHelper", COM_CROWDFUNDING_PATH_COMPONENT_ADMINISTRATOR . DIRECTORY_SEPARATOR . "helpers" . DIRECTORY_SEPARATOR . "install.php");
     jimport('joomla.filesystem.path');
     jimport('joomla.filesystem.folder');
     jimport('joomla.filesystem.file');
     jimport('Prism.init');
     jimport('Crowdfunding.init');
     $params = JComponentHelper::getParams("com_crowdfunding");
     /** @var $params Joomla\Registry\Registry */
     // Prepare images folders.
     $imagesFolder = JFolder::makeSafe($params->get("images_directory", "images/crowdfunding"));
     $temporaryImagesFolder = $imagesFolder . "/temporary";
     // Create images folder.
     $imagesPath = JPath::clean(JPATH_SITE . DIRECTORY_SEPARATOR . $imagesFolder);
     if (!is_dir($imagesPath)) {
         CrowdfundingInstallHelper::createFolder($imagesPath);
     }
     // Create temporary images folder
     $temporaryImagesPath = JPath::clean(JPATH_SITE . DIRECTORY_SEPARATOR . $temporaryImagesFolder);
     if (!is_dir($temporaryImagesPath)) {
         CrowdfundingInstallHelper::createFolder($temporaryImagesPath);
     }
     // Start table with the information
     CrowdfundingInstallHelper::startTable();
     // Requirements
     CrowdfundingInstallHelper::addRowHeading(JText::_("COM_CROWDFUNDING_MINIMUM_REQUIREMENTS"));
     // Display result about verification for existing folder
     $title = JText::_("COM_CROWDFUNDING_IMAGE_FOLDER");
     $info = $imagesFolder;
     if (!is_dir($imagesPath)) {
         $result = array("type" => "important", "text" => JText::_("JNO"));
     } else {
         $result = array("type" => "success", "text" => JText::_("JYES"));
     }
     CrowdfundingInstallHelper::addRow($title, $result, $info);
     // Display result about verification for writable folder
     $title = JText::_("COM_CROWDFUNDING_IMAGE_WRITABLE_FOLDER");
     $info = $imagesFolder;
     if (!is_writable($imagesPath)) {
         $result = array("type" => "important", "text" => JText::_("JNO"));
     } else {
         $result = array("type" => "success", "text" => JText::_("JYES"));
     }
     CrowdfundingInstallHelper::addRow($title, $result, $info);
     // Display result about verification for existing folder
     $title = JText::_("COM_CROWDFUNDING_TEMPORARY_IMAGE_FOLDER");
     $info = $temporaryImagesFolder;
     if (!is_dir($temporaryImagesPath)) {
         $result = array("type" => "important", "text" => JText::_("JNO"));
     } else {
         $result = array("type" => "success", "text" => JText::_("JYES"));
     }
     CrowdfundingInstallHelper::addRow($title, $result, $info);
     // Display result about verification for writable folder
     $title = JText::_("COM_CROWDFUNDING_TEMPORARY_IMAGE_WRITABLE_FOLDER");
     $info = $temporaryImagesFolder;
     if (!is_writable($temporaryImagesPath)) {
         $result = array("type" => "important", "text" => JText::_("JNO"));
     } else {
         $result = array("type" => "success", "text" => JText::_("JYES"));
     }
     CrowdfundingInstallHelper::addRow($title, $result, $info);
     // Display result about verification for GD library
     $title = JText::_("COM_CROWDFUNDING_GD_LIBRARY");
     $info = "";
     if (!extension_loaded('gd') and function_exists('gd_info')) {
         $result = array("type" => "important", "text" => JText::_("COM_CROWDFUNDING_WARNING"));
     } else {
         $result = array("type" => "success", "text" => JText::_("JON"));
     }
     CrowdfundingInstallHelper::addRow($title, $result, $info);
     // Display result about verification for cURL library
     $title = JText::_("COM_CROWDFUNDING_CURL_LIBRARY");
     $info = "";
     if (!extension_loaded('curl')) {
         $info = JText::_("COM_CROWDFUNDING_CURL_INFO");
         $result = array("type" => "important", "text" => JText::_("JOFF"));
     } else {
         $result = array("type" => "success", "text" => JText::_("JON"));
     }
     CrowdfundingInstallHelper::addRow($title, $result, $info);
     // Display result about verification Magic Quotes
     $title = JText::_("COM_CROWDFUNDING_MAGIC_QUOTES");
     $info = "";
     if (get_magic_quotes_gpc()) {
         $info = JText::_("COM_CROWDFUNDING_MAGIC_QUOTES_INFO");
         $result = array("type" => "important", "text" => JText::_("JON"));
     } else {
         $result = array("type" => "success", "text" => JText::_("JOFF"));
     }
     CrowdfundingInstallHelper::addRow($title, $result, $info);
     // Display result about verification FileInfo
     $title = JText::_("COM_CROWDFUNDING_FILEINFO");
     $info = "";
     if (!function_exists('finfo_open')) {
         $info = JText::_("COM_CROWDFUNDING_FILEINFO_INFO");
         $result = array("type" => "important", "text" => JText::_("JOFF"));
     } else {
         $result = array("type" => "success", "text" => JText::_("JON"));
     }
     CrowdfundingInstallHelper::addRow($title, $result, $info);
     // Display result about verification of PHP Version.
     $title = JText::_("COM_CROWDFUNDING_PHP_VERSION");
     $info = "";
     if (version_compare(PHP_VERSION, '5.3.0') < 0) {
         $result = array("type" => "important", "text" => JText::_("COM_CROWDFUNDING_WARNING"));
     } else {
         $result = array("type" => "success", "text" => JText::_("JYES"));
     }
     CrowdfundingInstallHelper::addRow($title, $result, $info);
     // Display result about verification of installed Prism Library
     $title = JText::_("COM_CROWDFUNDING_PRISM_LIBRARY");
     $info = "";
     if (!class_exists("Prism\\Version")) {
         $info = JText::_("COM_CROWDFUNDING_PRISM_LIBRARY_DOWNLOAD");
         $result = array("type" => "important", "text" => JText::_("JNO"));
     } else {
         $result = array("type" => "success", "text" => JText::_("JYES"));
     }
     CrowdfundingInstallHelper::addRow($title, $result, $info);
     // Installed extensions
     CrowdfundingInstallHelper::addRowHeading(JText::_("COM_CROWDFUNDING_INSTALLED_EXTENSIONS"));
     // Crowdfunding Library
     $result = array("type" => "success", "text" => JText::_("COM_CROWDFUNDING_INSTALLED"));
     CrowdfundingInstallHelper::addRow(JText::_("COM_CROWDFUNDING_CROWDFUNDING_LIBRARY"), $result, JText::_("COM_CROWDFUNDING_LIBRARY"));
     // Plugins
     // Content - Crowdfunding - Navigation
     $result = array("type" => "success", "text" => JText::_("COM_CROWDFUNDING_INSTALLED"));
     CrowdfundingInstallHelper::addRow(JText::_("COM_CROWDFUNDING_CONTENT_CROWDFUNDING_NAVIGATION"), $result, JText::_("COM_CROWDFUNDING_PLUGIN"));
     // Content - Crowdfunding - Share
     $result = array("type" => "success", "text" => JText::_("COM_CROWDFUNDING_INSTALLED"));
     CrowdfundingInstallHelper::addRow(JText::_("COM_CROWDFUNDING_CONTENT_CROWDFUNDING_SHARE"), $result, JText::_("COM_CROWDFUNDING_PLUGIN"));
     // Content - Crowdfunding - Admin Mail
     $result = array("type" => "success", "text" => JText::_("COM_CROWDFUNDING_INSTALLED"));
     CrowdfundingInstallHelper::addRow(JText::_("COM_CROWDFUNDING_CONTENT_CROWDFUNDING_ADMIN_MAIL"), $result, JText::_("COM_CROWDFUNDING_PLUGIN"));
     // Content - Crowdfunding - User Mail
     $result = array("type" => "success", "text" => JText::_("COM_CROWDFUNDING_INSTALLED"));
     CrowdfundingInstallHelper::addRow(JText::_("COM_CROWDFUNDING_CONTENT_CROWDFUNDING_USER_MAIL"), $result, JText::_("COM_CROWDFUNDING_PLUGIN"));
     // Content - Crowdfunding - Validator
     $result = array("type" => "success", "text" => JText::_("COM_CROWDFUNDING_INSTALLED"));
     CrowdfundingInstallHelper::addRow(JText::_("COM_CROWDFUNDING_CONTENT_CROWDFUNDING_VALIDATOR"), $result, JText::_("COM_CROWDFUNDING_PLUGIN"));
     // System - Crowdfunding - Modules
     $result = array("type" => "success", "text" => JText::_("COM_CROWDFUNDING_INSTALLED"));
     CrowdfundingInstallHelper::addRow(JText::_("COM_CROWDFUNDING_SYSTEM_CROWDFUNDINGMODULES"), $result, JText::_("COM_CROWDFUNDING_PLUGIN"));
     // Crowdfunding Payment - PayPal
     $result = array("type" => "success", "text" => JText::_("COM_CROWDFUNDING_INSTALLED"));
     CrowdfundingInstallHelper::addRow(JText::_("COM_CROWDFUNDING_CROWDFUNDINGPAYMENT_PAYPAL"), $result, JText::_("COM_CROWDFUNDING_PLUGIN"));
     // Modules
     // Crowdfunding Info
     $result = array("type" => "success", "text" => JText::_("COM_CROWDFUNDING_INSTALLED"));
     CrowdfundingInstallHelper::addRow(JText::_("COM_CROWDFUNDING_CROWDFUNDING_MODULE_INFO"), $result, JText::_("COM_CROWDFUNDING_MODULE"));
     // Crowdfunding Details
     $result = array("type" => "success", "text" => JText::_("COM_CROWDFUNDING_INSTALLED"));
     CrowdfundingInstallHelper::addRow(JText::_("COM_CROWDFUNDING_CROWDFUNDING_MODULE_DETAILS"), $result, JText::_("COM_CROWDFUNDING_MODULE"));
     // Crowdfunding Rewards
     $result = array("type" => "success", "text" => JText::_("COM_CROWDFUNDING_INSTALLED"));
     CrowdfundingInstallHelper::addRow(JText::_("COM_CROWDFUNDING_CROWDFUNDING_MODULE_REWARDS"), $result, JText::_("COM_CROWDFUNDING_MODULE"));
     // End table
     CrowdfundingInstallHelper::endTable();
     echo JText::sprintf("COM_CROWDFUNDING_MESSAGE_REVIEW_SAVE_SETTINGS", JRoute::_("index.php?option=com_crowdfunding"));
     if (!class_exists("Prism\\Version")) {
         echo JText::_("COM_CROWDFUNDING_MESSAGE_INSTALL_PRISM_LIBRARY");
     } else {
         if (class_exists("Crowdfunding\\Version")) {
             $prismVersion = new Prism\Version();
             $crowdfundingVersion = new Crowdfunding\Version();
             if (version_compare($prismVersion->getShortVersion(), $crowdfundingVersion->requiredPrismVersion)) {
                 echo JText::_("COM_CROWDFUNDING_MESSAGE_INSTALL_PRISM_LIBRARY");
             }
         }
     }
     // Remove the files that the system does not use anymore.
     $this->removeUnusedFiles();
 }
 /**
  * Method to run after an install/update/uninstall method.
  *
  * @param string $type
  * @param string $parent
  *
  * @throws \UnexpectedValueException
  * @throws \InvalidArgumentException
  * @return void
  */
 public function postflight($type, $parent)
 {
     if (!defined('COM_CROWDFUNDING_PATH_COMPONENT_ADMINISTRATOR')) {
         define('COM_CROWDFUNDING_PATH_COMPONENT_ADMINISTRATOR', JPATH_ADMINISTRATOR . DIRECTORY_SEPARATOR . 'components' . DIRECTORY_SEPARATOR . 'com_crowdfunding');
     }
     // Register Component helpers
     JLoader::register('CrowdfundingInstallHelper', COM_CROWDFUNDING_PATH_COMPONENT_ADMINISTRATOR . DIRECTORY_SEPARATOR . 'helpers' . DIRECTORY_SEPARATOR . 'install.php');
     jimport('Prism.init');
     jimport('Crowdfunding.init');
     $params = JComponentHelper::getParams('com_crowdfunding');
     /** @var $params Joomla\Registry\Registry */
     // Prepare images folders.
     $imagesFolder = JFolder::makeSafe($params->get('images_directory', 'images/crowdfunding'));
     $temporaryImagesFolder = $imagesFolder . '/temporary';
     // Create images folder.
     $imagesPath = JPath::clean(JPATH_SITE . DIRECTORY_SEPARATOR . $imagesFolder);
     if (!JFolder::exists($imagesPath)) {
         CrowdfundingInstallHelper::createFolder($imagesPath);
     }
     // Create temporary images folder
     $temporaryImagesPath = JPath::clean(JPATH_SITE . DIRECTORY_SEPARATOR . $temporaryImagesFolder);
     if (!JFolder::exists($temporaryImagesPath)) {
         CrowdfundingInstallHelper::createFolder($temporaryImagesPath);
     }
     // Start table with the information
     CrowdfundingInstallHelper::startTable();
     // Requirements
     CrowdfundingInstallHelper::addRowHeading(JText::_('COM_CROWDFUNDING_MINIMUM_REQUIREMENTS'));
     // Display result about verification for existing folder
     $title = JText::_('COM_CROWDFUNDING_IMAGE_FOLDER');
     $info = $imagesFolder;
     if (!JFolder::exists($imagesPath)) {
         $result = array('type' => 'important', 'text' => JText::_('JNO'));
     } else {
         $result = array('type' => 'success', 'text' => JText::_('JYES'));
     }
     CrowdfundingInstallHelper::addRow($title, $result, $info);
     // Display result about verification for writable folder
     $title = JText::_('COM_CROWDFUNDING_IMAGE_WRITABLE_FOLDER');
     $info = $imagesFolder;
     if (!is_writable($imagesPath)) {
         $result = array('type' => 'important', 'text' => JText::_('JNO'));
     } else {
         $result = array('type' => 'success', 'text' => JText::_('JYES'));
     }
     CrowdfundingInstallHelper::addRow($title, $result, $info);
     // Display result about verification for existing folder
     $title = JText::_('COM_CROWDFUNDING_TEMPORARY_IMAGE_FOLDER');
     $info = $temporaryImagesFolder;
     if (!JFolder::exists($temporaryImagesPath)) {
         $result = array('type' => 'important', 'text' => JText::_('JNO'));
     } else {
         $result = array('type' => 'success', 'text' => JText::_('JYES'));
     }
     CrowdfundingInstallHelper::addRow($title, $result, $info);
     // Display result about verification for writable folder
     $title = JText::_('COM_CROWDFUNDING_TEMPORARY_IMAGE_WRITABLE_FOLDER');
     $info = $temporaryImagesFolder;
     if (!is_writable($temporaryImagesPath)) {
         $result = array('type' => 'important', 'text' => JText::_('JNO'));
     } else {
         $result = array('type' => 'success', 'text' => JText::_('JYES'));
     }
     CrowdfundingInstallHelper::addRow($title, $result, $info);
     // Display result about verification for GD library
     $title = JText::_('COM_CROWDFUNDING_GD_LIBRARY');
     $info = '';
     if (!extension_loaded('gd') and !function_exists('gd_info')) {
         $info = JText::_('COM_CROWDFUNDING_GD_LIBRARY_INFO');
         $result = array('type' => 'important', 'text' => JText::_('JOFF'));
     } else {
         $result = array('type' => 'success', 'text' => JText::_('JON'));
     }
     CrowdfundingInstallHelper::addRow($title, $result, $info);
     // Display result about verification for cURL library
     $title = JText::_('COM_CROWDFUNDING_CURL_LIBRARY');
     $info = '';
     if (!extension_loaded('curl')) {
         $info = JText::_('COM_CROWDFUNDING_CURL_INFO');
         $result = array('type' => 'important', 'text' => JText::_('JOFF'));
     } else {
         $result = array('type' => 'success', 'text' => JText::_('JON'));
     }
     CrowdfundingInstallHelper::addRow($title, $result, $info);
     // Display result about verification Magic Quotes
     $title = JText::_('COM_CROWDFUNDING_MAGIC_QUOTES');
     $info = '';
     if (get_magic_quotes_gpc()) {
         $info = JText::_('COM_CROWDFUNDING_MAGIC_QUOTES_INFO');
         $result = array('type' => 'important', 'text' => JText::_('JON'));
     } else {
         $result = array('type' => 'success', 'text' => JText::_('JOFF'));
     }
     CrowdfundingInstallHelper::addRow($title, $result, $info);
     // Display result about verification FileInfo
     $title = JText::_('COM_CROWDFUNDING_FILEINFO');
     $info = '';
     if (!function_exists('finfo_open')) {
         $info = JText::_('COM_CROWDFUNDING_FILEINFO_INFO');
         $result = array('type' => 'important', 'text' => JText::_('JOFF'));
     } else {
         $result = array('type' => 'success', 'text' => JText::_('JON'));
     }
     CrowdfundingInstallHelper::addRow($title, $result, $info);
     // Display result about verification PHP Intl
     $title = JText::_('COM_CROWDFUNDING_PHPINTL');
     $info = '';
     if (!extension_loaded('intl')) {
         $info = JText::_('COM_CROWDFUNDING_PHPINTL_INFO');
         $result = array('type' => 'important', 'text' => JText::_('JOFF'));
     } else {
         $result = array('type' => 'success', 'text' => JText::_('JON'));
     }
     CrowdfundingInstallHelper::addRow($title, $result, $info);
     // Display result about verification of PHP Version.
     $title = JText::_('COM_CROWDFUNDING_PHP_VERSION');
     $info = '';
     if (version_compare(PHP_VERSION, '5.5.0', '<')) {
         $result = array('type' => 'important', 'text' => JText::_('COM_CROWDFUNDING_WARNING'));
     } else {
         $result = array('type' => 'success', 'text' => JText::_('JYES'));
     }
     CrowdfundingInstallHelper::addRow($title, $result, $info);
     // Display result about MySQL Version.
     $title = JText::_('COM_CROWDFUNDING_MYSQL_VERSION');
     $info = '';
     $dbVersion = JFactory::getDbo()->getVersion();
     if (version_compare($dbVersion, '5.5.3', '<')) {
         $result = array('type' => 'important', 'text' => JText::_('COM_CROWDFUNDING_WARNING'));
     } else {
         $result = array('type' => 'success', 'text' => JText::_('JYES'));
     }
     CrowdfundingInstallHelper::addRow($title, $result, $info);
     // Display result about verification of installed Prism Library
     $info = '';
     if (!class_exists('Prism\\Version')) {
         $title = JText::_('COM_CROWDFUNDING_PRISM_LIBRARY');
         $info = JText::_('COM_CROWDFUNDING_PRISM_LIBRARY_DOWNLOAD');
         $result = array('type' => 'important', 'text' => JText::_('JNO'));
     } else {
         $prismVersion = new Prism\Version();
         $text = JText::sprintf('COM_CROWDFUNDING_CURRENT_V_S', $prismVersion->getShortVersion());
         if (class_exists('Crowdfunding\\Version')) {
             $componentVersion = new Crowdfunding\Version();
             $title = JText::sprintf('COM_CROWDFUNDING_PRISM_LIBRARY_S', $componentVersion->requiredPrismVersion);
             if (version_compare($prismVersion->getShortVersion(), $componentVersion->requiredPrismVersion, '<')) {
                 $info = JText::_('COM_CROWDFUNDING_PRISM_LIBRARY_DOWNLOAD');
                 $result = array('type' => 'warning', 'text' => $text);
             }
         } else {
             $title = JText::_('COM_CROWDFUNDING_PRISM_LIBRARY');
             $result = array('type' => 'success', 'text' => $text);
         }
     }
     CrowdfundingInstallHelper::addRow($title, $result, $info);
     // Installed extensions
     CrowdfundingInstallHelper::addRowHeading(JText::_('COM_CROWDFUNDING_INSTALLED_EXTENSIONS'));
     // Crowdfunding Library
     $result = array('type' => 'success', 'text' => JText::_('COM_CROWDFUNDING_INSTALLED'));
     CrowdfundingInstallHelper::addRow(JText::_('COM_CROWDFUNDING_CROWDFUNDING_LIBRARY'), $result, JText::_('COM_CROWDFUNDING_LIBRARY'));
     // Plugins
     // Content - Crowdfunding - Navigation
     $result = array('type' => 'success', 'text' => JText::_('COM_CROWDFUNDING_INSTALLED'));
     CrowdfundingInstallHelper::addRow(JText::_('COM_CROWDFUNDING_CONTENT_CROWDFUNDING_NAVIGATION'), $result, JText::_('COM_CROWDFUNDING_PLUGIN'));
     // Content - Crowdfunding - Share
     $result = array('type' => 'success', 'text' => JText::_('COM_CROWDFUNDING_INSTALLED'));
     CrowdfundingInstallHelper::addRow(JText::_('COM_CROWDFUNDING_CONTENT_CROWDFUNDING_SHARE'), $result, JText::_('COM_CROWDFUNDING_PLUGIN'));
     // Content - Crowdfunding - Admin Mail
     $result = array('type' => 'success', 'text' => JText::_('COM_CROWDFUNDING_INSTALLED'));
     CrowdfundingInstallHelper::addRow(JText::_('COM_CROWDFUNDING_CONTENT_CROWDFUNDING_ADMIN_MAIL'), $result, JText::_('COM_CROWDFUNDING_PLUGIN'));
     // Content - Crowdfunding - User Mail
     $result = array('type' => 'success', 'text' => JText::_('COM_CROWDFUNDING_INSTALLED'));
     CrowdfundingInstallHelper::addRow(JText::_('COM_CROWDFUNDING_CONTENT_CROWDFUNDING_USER_MAIL'), $result, JText::_('COM_CROWDFUNDING_PLUGIN'));
     // Content - Crowdfunding - Validator
     $result = array('type' => 'success', 'text' => JText::_('COM_CROWDFUNDING_INSTALLED'));
     CrowdfundingInstallHelper::addRow(JText::_('COM_CROWDFUNDING_CONTENT_CROWDFUNDING_VALIDATOR'), $result, JText::_('COM_CROWDFUNDING_PLUGIN'));
     // System - Crowdfunding - Modules
     $result = array('type' => 'success', 'text' => JText::_('COM_CROWDFUNDING_INSTALLED'));
     CrowdfundingInstallHelper::addRow(JText::_('COM_CROWDFUNDING_SYSTEM_CROWDFUNDINGMODULES'), $result, JText::_('COM_CROWDFUNDING_PLUGIN'));
     // Crowdfunding Payment - PayPal
     $result = array('type' => 'success', 'text' => JText::_('COM_CROWDFUNDING_INSTALLED'));
     CrowdfundingInstallHelper::addRow(JText::_('COM_CROWDFUNDING_CROWDFUNDINGPAYMENT_PAYPAL'), $result, JText::_('COM_CROWDFUNDING_PLUGIN'));
     // Modules
     // Crowdfunding Info
     $result = array('type' => 'success', 'text' => JText::_('COM_CROWDFUNDING_INSTALLED'));
     CrowdfundingInstallHelper::addRow(JText::_('COM_CROWDFUNDING_CROWDFUNDING_MODULE_INFO'), $result, JText::_('COM_CROWDFUNDING_MODULE'));
     // Crowdfunding Details
     $result = array('type' => 'success', 'text' => JText::_('COM_CROWDFUNDING_INSTALLED'));
     CrowdfundingInstallHelper::addRow(JText::_('COM_CROWDFUNDING_CROWDFUNDING_MODULE_DETAILS'), $result, JText::_('COM_CROWDFUNDING_MODULE'));
     // Crowdfunding Rewards
     $result = array('type' => 'success', 'text' => JText::_('COM_CROWDFUNDING_INSTALLED'));
     CrowdfundingInstallHelper::addRow(JText::_('COM_CROWDFUNDING_CROWDFUNDING_MODULE_REWARDS'), $result, JText::_('COM_CROWDFUNDING_MODULE'));
     // End table
     CrowdfundingInstallHelper::endTable();
     echo JText::sprintf('COM_CROWDFUNDING_MESSAGE_REVIEW_SAVE_SETTINGS', JRoute::_('index.php?option=com_crowdfunding'));
     if (!class_exists('Prism\\Version')) {
         echo JText::_('COM_CROWDFUNDING_MESSAGE_INSTALL_PRISM_LIBRARY');
     } else {
         if (class_exists('Crowdfunding\\Version')) {
             $prismVersion = new Prism\Version();
             $componentVersion = new Crowdfunding\Version();
             if (version_compare($prismVersion->getShortVersion(), $componentVersion->requiredPrismVersion, '<')) {
                 echo JText::_('COM_CROWDFUNDING_MESSAGE_INSTALL_PRISM_LIBRARY');
             }
         }
     }
     // Delete the files that the system does not use anymore.
     $this->deleteFiles();
 }