File manager - Edit - /home/jardides/www/Jardi-design/ZZZ/tmp/install_5707809718edf/script.php
Back
<?php // No direct access to this file defined('_JEXEC') or die('Restricted access'); /** * Script file of AlfContact component */ class com_AlfContactInstallerScript { /** * method to install the component * * @return void */ function install($parent) { // Shows after install echo '<div class="well"><img style="float: left; margin-left: 15px; margin-right: 15px; margin-bottom: 10px;" src="' . JURI::root() . 'media/com_alfcontact/images/' . 'alfcontact-48.png' . '" alt="ALFContact logo" />'; echo '<h2 style="color: #FEA23B; margin: 0pt; padding: 15px;">' . JText::_('COM_ALFCONTACT') . ' v3.2.3</h2>'; echo '<div style="width: 50em; margin: 0pt; padding: 0.5em;">'; echo '<p><br>' . JText::_('COM_ALFCONTACT_DESCRIPTION') . '</p>'; echo '<p>' . JText::_('COM_ALFCONTACT_INSTALL_TEXT') . '</p>'; echo '<p><a style="font-weight: bold; color: #FEA23B; font-size: 1.1em;" href="' . JRoute::_('index.php?option=com_alfcontact') . '" title="">' . JText::_('COM_ALFCONTACT_GOTO_ADMIN') . '</a></p>'; echo '</div></div>'; } /** * method to uninstall the component * * @return void */ function uninstall($parent) { // Shows after uninstall echo '<div class="well"><img style="float: left; margin: 10px;" src="http://www.alfsoft.com/images/alfcontact-48.png" alt="ALFContact logo" />'; echo '<h2 style="color: #FEA23B; margin-top: 15px; padding: 15px;">' . JText::_('COM_ALFCONTACT') . '</h2>'; echo '<div>'; echo '<p>' . JText::_('COM_ALFCONTACT_UNINSTALL_TEXT') . '</p>'; echo '</div></div>'; } /** * method to update the component * * @return void */ function update($parent) { // Shows after update echo '<div class="well"><img style="float: left; margin: 10px;" src="http://www.alfsoft.com/images/alfcontact-48.png" alt="ALFContact logo" />'; echo '<h2 style="color: #FEA23B; margin-top: 15px; padding: 15px;">' . JText::_('COM_ALFCONTACT') . '</h2>'; echo '<div>'; echo '<p>' . JText::_('COM_ALFCONTACT_UPDATE_TEXT') . '</p>'; echo '</div></div>'; } /** * method to run before an install/update/uninstall method * * @return void */ function preflight($type, $parent) { // $parent is the class calling this method // $type is the type of change (install, update or discover_install) echo '<p>' . JText::_('COM_ALFCONTACT_PREFLIGHT_' . $type . '_TEXT') . '</p>'; } /** * method to run after an install/update/uninstall method * * @return void */ function postflight($type, $parent) { // $parent is the class calling this method // $type is the type of change (install, update or discover_install) $siteApp = JApplicationCms::getInstance('site'); $menu = $siteApp->getMenu()->getItems('link','index.php?option=com_alfcontact&view=alfcontact'); $firstmenu = array_shift($menu); if (($type == 'update') && (!$firstmenu->params->exists('header'))){ //upgrade v3.1.1: moved parameters from component to menu-item echo 'The Title, Header and Footer parameters have now been moved to the menu-item settings!' ; //check for component parameters $c_params = JComponentHelper::getParams( 'com_alfcontact' ); // get the 'old' values from the component settings $temp_title = $c_params->get('title'); $temp_header = $c_params->get('header'); $temp_footer = $c_params->get('footer'); //clear the 'old' settings in the component settings $c_params->set('title',''); $c_params->set('header',''); $c_params->set('footer',''); //Copy the parameteres to the menu-item settings $db = JFactory::getDBO(); $name = 'com_alfcontact'; $query = "UPDATE #__extensions SET params =". $db->quote((string) $c_params) . "WHERE name =" . $db->quote((string) $name); $db->setQuery($query); foreach($menu as $val) { $val->params->set('title', $temp_title); $val->params->set('header', $temp_header); $val->params->set('footer', $temp_footer); $query = "UPDATE #__menu SET params = " . $db->quote((string) $val->params) . " WHERE id = " . $db->quote((string) $val->id); $db->setQuery($query); } } echo '<p>' . JText::_('COM_ALFCONTACT_POSTFLIGHT_' . $type . '_TEXT') . '</p>'; } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0.02 |
proxy
|
phpinfo
|
Settings