Exemple #1
0
     exit;
     break;
 case 'addgroupajax':
     addGroup(aecGetParam('type'), aecGetParam('id'), aecGetParam('group'));
     exit;
     break;
 case 'removegroupajax':
     removeGroup(aecGetParam('type'), aecGetParam('id'), aecGetParam('group'));
     exit;
     break;
 case 'recallinstall':
     include_once JPATH_SITE . '/administrator/components/com_acctexp/install.acctexp.php';
     com_install();
     break;
 case 'initsettings':
     $aecConfig = new aecConfig();
     $aecConfig->initParams();
     echo 'SPLINES RETICULATED.';
     break;
 case 'parsertest':
     $top = new templateOverrideParser();
     break;
 case 'lessen':
     include_once JPATH_SITE . '/components/com_acctexp/lib/lessphp/lessc.inc.php';
     $less = new lessc();
     $less->setImportDir(array(JPATH_SITE . '/media/com_acctexp/less/'));
     //$less->setFormatter("compressed");
     $less->setPreserveComments(true);
     $v = new JVersion();
     if ($v->isCompatible('3.0')) {
         $less->compileFile(JPATH_SITE . "/media/com_acctexp/less/admin-j3.less", JPATH_SITE . '/media/com_acctexp/css/admin.css');
Exemple #2
0
 public function upgrade(&$errors, $eucaInstall, $eucaInstalldb)
 {
     $db = JFactory::getDBO();
     $app = JFactory::getApplication();
     // Overall Variables
     $tables = $db->getTableList();
     $incpath = JPATH_SITE . '/administrator/components/com_acctexp/install/inc';
     // Upgrade ancient settings
     include_once $incpath . '/settings_oldupgrade.inc.php';
     // Upgrade Settings to 0.12.6 status
     include_once $incpath . '/settings_0_12_6_upgrade.inc.php';
     // Load Class (and thus aecConfig)
     require_once JPATH_SITE . '/components/com_acctexp/acctexp.class.php';
     $aecConfig = new aecConfig();
     if (!empty($aecConfig->cfg)) {
         $this->new = false;
     }
     $aecConfig->initParams();
     $document = JFactory::getDocument();
     $document->addCustomTag('<link rel="stylesheet" type="text/css" media="all" href="' . JURI::root() . 'media/com_acctexp/css/admin.css?rev=' . _AEC_REVISION . '" />');
     if (isset($aecConfig->cfg['aec_version'])) {
         $oldversion = $aecConfig->cfg['aec_version'];
     } else {
         $oldversion = '0.0.1';
         if (!$eucaInstalldb->ColumninTable('ordering', 'coupons')) {
             $oldversion = '1.0.0';
         } else {
             $db->setQuery("SHOW INDEXES FROM #__acctexp_subscr");
             $indexes = $db->loadObjectList();
             foreach ($indexes as $index) {
                 if (strpos($index->Key_name, 'userid') !== false) {
                     $oldversion = '0.14.6';
                 }
             }
         }
     }
     if ($this->new) {
         return;
     }
     // Check if we are upgrading from before 0.12.6RC2j - then we need to check everything before that
     if (empty($oldversion) || version_compare($oldversion, '0.12.6RC2j') === 0) {
         if (version_compare($oldversion, '0.12.6RC2j') === 0) {
             $oldupdates = array('0_12_6RC2j');
         } else {
             $oldupdates = array('0_6_0', '0_8_0', '0_10_0', '0_12_0', '0_12_6RC2j');
         }
         foreach ($oldupdates as $upd) {
             require_once $incpath . '/upgrade_' . $upd . '.inc.php';
         }
     }
     $incfiles = xJUtility::getFileArray($incpath, 'inc.php', false, true);
     $versions = array();
     foreach ($incfiles as $filename) {
         if (strpos($filename, 'upgrade_') === false) {
             continue;
         } else {
             $versions[] = str_replace(array('upgrade_', '.inc.php'), array('', ''), $filename);
         }
     }
     $versions = xJUtility::versionSort($versions);
     $old = xJUtility::normVersionName($oldversion);
     foreach ($versions as $version) {
         $new = xJUtility::normVersionName($version);
         if (version_compare($new, $old, '>=')) {
             require_once $incpath . '/upgrade_' . $version . '.inc.php';
         }
     }
     $aecConfig->cfg['aec_version'] = _AEC_VERSION;
     $aecConfig->saveSettings();
 }
Exemple #3
0
 public function readSettings()
 {
     global $aecConfig;
     $r = array();
     $r['head'] = "Settings";
     $r['type'] = "table";
     $setdef = aecConfig::paramsList();
     $r['def'] = array();
     foreach ($setdef as $sd => $sdd) {
         if ($sdd === 0 || $sdd === 1) {
             $tname = str_replace(':', '', JText::_('CFG_GENERAL_' . strtoupper($sd) . '_NAME'));
             $r['def'][$tname] = array($sd, 'bool');
         }
     }
     $r['set'][] = $aecConfig->cfg;
     if (!empty($_POST['show_extsettings'])) {
         $readout[] = $r;
         unset($r);
         $r['head'] = "";
         $r['type'] = "table";
         $setdef = aecConfig::paramsList();
         $r['def'] = array();
         foreach ($setdef as $sd => $sdd) {
             if ($sdd !== 0 && $sdd !== 1) {
                 $reg = array('GENERAL', 'MI');
                 foreach ($reg as $regg) {
                     $cname = 'CFG_' . $regg . '_' . strtoupper($sd) . '_NAME';
                     if (defined($cname)) {
                         $tname = str_replace(':', '', JText::_($cname));
                     }
                 }
                 $r['def'][$tname] = array($sd);
             }
         }
         $r['set'][] = $aecConfig->cfg;
     }
     $readout[] = $r;
     return $readout;
 }