0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
magento
/
1.7.0.2-6
/
standard
/
htdocs
/
downloader
/
template_de
/
[
Home
]
File: settings.phtml
<?php /** * Magento * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE_AFL.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@magentocommerce.com so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade Magento to newer * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * * @category Varien * @package Varien_Object * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> <?php echo $this->template('header.phtml') ?> <script> function useCustomPermissions (element) { if (element.value == '1') { disabledMode = 'block'; } else { disabledMode = 'none'; } document.getElementById('use_custom_permissions_mode_panel').style.display = disabledMode; } </script> <h2 class="page-head">Einstellungen</h2> <form action="<?php echo $this->url('settingsPost') ?>" method="POST"> <fieldset> <p>Magento Erweiterungen sind in 3 verschiedenen Varianten verfügbar.</p> <ul class="disc"> <li><strong>Stable</strong> - bedeutet das die Erweiterung auf einer Produktiv-Umgebung eingesetzt werden kann.</li> <li><strong>Beta</strong> - bedeutet das <u>nicht</u> empfohlen wird die Erweiterung auf einer Produktiv-Umgebung einzusetzen.</li> <li><strong>Alpha</strong> - bedeutet die Erweiterung befindet sich noch in der Entwicklung.</li> </ul> <p><b>Bitte merken:</b> Erweiterungen werden per Internet-Server bereitgestellt. <br /> Stellen Sie sicher das Ihre Daten entsprechend gesichert wurden, bevor Sie neue Erweiterungen installieren. <br /> Da ansonsten Ihre Anpassungen & - oder Konfigurationen durch Überschreibungen verloren gehen können.</p> <br /> </p> <table cellspacing="0" class="form-list"> <tr> <td class="label">Bevorzugter Status:</td> <td class="value"> <select id="preferred_state" name="preferred_state" style="width:150px;"> <option value="stable" <?php if ($this->get('state')=='stable'):?>selected="selected"<?php endif ?>>Stable</option> <option value="beta" <?php if ($this->get('state')=='beta'):?>selected="selected"<?php endif ?>>Beta</option> <option value="alpha" <?php if ($this->get('state')=='alpha'):?>selected="selected"<?php endif ?>>Alpha</option> </select> </td> </tr> <!-- <tr> <td class="label">Magento Installation Directory:</td> <td class="value"><input name="mage_dir" value="<?php echo htmlentities($this->get('mage_dir'))?>" style="width:250px;"/></td> </tr> --> </table> <p>Schreibrechte zum erstellen neuer Dateien und Verzeichnisse.</p> <table cellspacing="0" class="form-list"> <tr> <td class="label">Verwende eigene Schreibrechte:</td> <td class="value"> <select onchange="useCustomPermissions(this)" id="use_custom_permissions_mode" name="use_custom_permissions_mode" style="width:150px;"> <option value="1" <?php if ($this->get('use_custom_permissions_mode')=='1'):?>selected="selected"<?php endif ?>>Ja</option> <option value="0" <?php if ($this->get('use_custom_permissions_mode')=='0'):?>selected="selected"<?php endif ?>>Nein</option> </select> </td> </tr> </table> <table cellspacing="0" class="form-list" id="use_custom_permissions_mode_panel" <?php if ($this->get('use_custom_permissions_mode')=='0'):?>style="display:none;"<?php endif ?>> <tr> <td class="label">Verzeichnisse:</td> <td class="value"> <input id="mkdir_mode" name="mkdir_mode" value="<?php echo($this->get('mkdir_mode'));?>" style="width:50px;" type="text"></input> </td> </tr> <tr> <td class="label">Dateien:</td> <td class="value"> <input id="chmod_file_mode" name="chmod_file_mode" value="<?php echo($this->get('chmod_file_mode'));?>" style="width:50px;" type="text"></input> </td> </tr> <tr> <td class="label">Ausführbare Dateien:</td> <td class="value"> <input id="chmod_file_mode_executable" name="chmod_file_mode_executable" value="<?php echo($this->get('chmod_file_mode_executable'));?>" style="width:50px;" type="text"></input> </td> </tr> </table> <p><button type="submit">Einstellungen speichern</button></p> </fieldset> </form> <?php echo $this->template('footer.phtml') ?>