mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-03 23:24:07 +01:00
* Fixed master password change not running when zeros are used on left or right. * Fixed some notice events on error log. * Closes #47. Default group&profile can be selected for new LDAP users * Closes #48. Database fields modified for STRICT sql mode * Installer now logs errors to web server error log
573 lines
22 KiB
PHP
573 lines
22 KiB
PHP
<?php
|
|
/**
|
|
* sysPass
|
|
*
|
|
* @author nuxsmin
|
|
* @link http://syspass.org
|
|
* @copyright 2012-2014 Rubén Domínguez nuxsmin@syspass.org
|
|
*
|
|
* This file is part of sysPass.
|
|
*
|
|
* sysPass is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* sysPass is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with sysPass. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
defined('APP_ROOT') || die(_('No es posible acceder directamente a este archivo'));
|
|
|
|
$action = $data['action'];
|
|
$activeTab = $data['activeTab'];
|
|
$onCloseAction = $data['onCloseAction'];
|
|
|
|
SP_ACL::checkUserAccess($action) || SP_Html::showCommonError('unavailable');
|
|
|
|
$arrLangAvailable = array(
|
|
'Español' => 'es_ES',
|
|
'English' => 'en_US',
|
|
'Deutsch' => 'de_DE',
|
|
'Magyar' => 'hu_HU');
|
|
$arrAccountCount = array(6,9,12,15,21,27,30,51,99);
|
|
$mailSecurity = array('SSL','TLS');
|
|
|
|
$isDemoMode = SP_Util::demoIsEnabled();
|
|
|
|
$isDisabled = ( $isDemoMode ) ? "DISABLED" : "";
|
|
$chkLog = ( SP_Config::getValue('log_enabled') ) ? 'checked="checked"' : '';
|
|
$chkDebug = ( SP_Config::getValue('debug') ) ? 'checked="checked"' : '';
|
|
$chkMaintenance = ( SP_Config::getValue('maintenance') ) ? 'checked="checked"' : '';
|
|
$chkUpdates = ( SP_Config::getValue('checkupdates') ) ? 'checked="checked"' : '';
|
|
$chkGlobalSearch = ( SP_Config::getValue('globalsearch') ) ? 'checked="checked"' : '';
|
|
$chkAccountLink = ( SP_Config::getValue('account_link') ) ? 'checked="checked"' : '';
|
|
$chkFiles = ( SP_Config::getValue('files_enabled') ) ? 'checked="checked"' : '';
|
|
$chkWiki = ( SP_Config::getValue('wiki_enabled') ) ? 'checked="checked"' : '';
|
|
$chkLdap = ( SP_Config::getValue('ldap_enabled') ) ? 'checked="checked"' : '';
|
|
$chkLdapADS = ( SP_Config::getValue('ldap_ads') ) ? 'checked="checked"' : '';
|
|
$chkMail = ( SP_Config::getValue('mail_enabled') ) ? 'checked="checked"' : '';
|
|
$chkMailRequests = ( SP_Config::getValue('mail_requestsenabled') ) ? 'checked="checked"' : '';
|
|
$chkMailAuth = ( SP_Config::getValue('mail_authenabled') ) ? 'checked="checked"' : '';
|
|
$chkResultsAsCards = ( SP_Config::getValue('resultsascards') ) ? 'checked="checked"' : '';
|
|
$allowedExts = SP_Config::getValue('files_allowed_exts');
|
|
|
|
$groupsSelProp = array('name' => 'ldap_defaultgroup',
|
|
'id' => 'ldap_defaultgroup',
|
|
'class' => '',
|
|
'size' => 1,
|
|
'label' => '',
|
|
'selected' => SP_Config::getValue('ldap_defaultgroup'),
|
|
'default' => '',
|
|
'js' => '',
|
|
'attribs' => array('required',$isDisabled));
|
|
|
|
$profilesSelProp = array('name' => 'ldap_defaultprofile',
|
|
'id' => 'ldap_defaultprofile',
|
|
'class' => '',
|
|
'size' => 1,
|
|
'label' => '',
|
|
'selected' => SP_Config::getValue('ldap_defaultprofile'),
|
|
'default' => '',
|
|
'js' => '',
|
|
'attribs' => array('required',$isDisabled));
|
|
?>
|
|
|
|
<div id="title" class="midroundup titleNormal">
|
|
<?php echo _('Sitio'); ?>
|
|
</div>
|
|
|
|
<form method="post" name="frmConfig" id="frmConfig">
|
|
|
|
<table id="tblSite" class="data tblConfig round">
|
|
|
|
<tr>
|
|
<td class="descField"><?php echo _('Idioma'); ?></td>
|
|
<td class="valField">
|
|
<select name="sitelang" id="sel-sitelang" size="1">
|
|
<?php
|
|
foreach ( $arrLangAvailable as $langName => $langValue ){
|
|
$selected = ( SP_Config::getValue('sitelang') == $langValue ) ? "SELECTED" : "";
|
|
echo "<option value='$langValue' $selected>$langName</option>";
|
|
}
|
|
?>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('Timeout de sesión (s)'); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<input type="text" name="session_timeout" value="<?php echo SP_Config::getValue('session_timeout'); ?>" maxlength="4" <?php echo $isDisabled; ?> />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('Habilitar log de eventos'); ?>
|
|
<?php SP_Common::printHelpButton("config", 20); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<label for="logenabled"><?php echo ($chkLog) ? 'ON' : 'OFF'; ?></label>
|
|
<input type="checkbox" name="log_enabled" id="logenabled" class="checkbox" <?php echo $chkLog.' '.$isDisabled; ?> />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('Habilitar depuración'); ?>
|
|
<?php SP_Common::printHelpButton("config", 19); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<label for="debug"><?php echo ($chkDebug) ? 'ON' : 'OFF'; ?></label>
|
|
<input type="checkbox" name="debug" id="debug" class="checkbox" <?php echo $chkDebug.' '.$isDisabled; ?> />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('Modo mantenimiento'); ?>
|
|
<?php SP_Common::printHelpButton("config", 18); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<label for="maintenance"><?php echo ($chkMaintenance) ? 'ON' : 'OFF'; ?></label>
|
|
<input type="checkbox" name="maintenance" id="maintenance" class="checkbox" <?php echo $chkMaintenance.' '.$isDisabled; ?> />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('Comprobar actualizaciones'); ?>
|
|
<?php SP_Common::printHelpButton("config", 21); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<label for="updates"><?php echo ($chkUpdates) ? 'ON' : 'OFF'; ?></label>
|
|
<input type="checkbox" name="updates" id="updates" class="checkbox" <?php echo $chkUpdates.' '.$isDisabled; ?> />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('Nombre de cuenta como enlace'); ?>
|
|
<?php SP_Common::printHelpButton("config", 3); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<label for="account_link"><?php echo ($chkAccountLink) ? 'ON' : 'OFF'; ?></label>
|
|
<input type="checkbox" name="account_link" id="account_link" class="checkbox" <?php echo $chkAccountLink; ?> />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('Gestión de archivos'); ?>
|
|
<?php SP_Common::printHelpButton("config", 5); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<label for="filesenabled"><?php echo ($chkFiles) ? 'ON' : 'OFF'; ?></label>
|
|
<input type="checkbox" name="files_enabled" id="filesenabled" class="checkbox" <?php echo $chkFiles.' '.$isDisabled; ?> />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('Búsquedas globales'); ?>
|
|
<?php SP_Common::printHelpButton("config", 24); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<label for="globalsearch"><?php echo ($chkGlobalSearch) ? 'ON' : 'OFF'; ?></label>
|
|
<input type="checkbox" name="globalsearch" id="globalsearch" class="checkbox" <?php echo $chkGlobalSearch.' '.$isDisabled; ?> />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('Extensiones de archivos permitidas'); ?>
|
|
<?php SP_Common::printHelpButton("config", 22); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<input type="text" name="files_allowed_exts" id="allowed_exts" value="<?php echo $allowedExts; ?>"/>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('Tamaño máximo de archivo'); ?>
|
|
<?php SP_Common::printHelpButton("config", 6); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<input type="text" name="files_allowed_size" value="<?php echo SP_Config::getValue('files_allowed_size'); ?>" maxlength="5" <?php echo $isDisabled; ?> />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('Resultados por página'); ?>
|
|
<?php SP_Common::printHelpButton("config", 4); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<select name="account_count" id="sel-account_count" size="1">
|
|
<?php
|
|
foreach ($arrAccountCount as $num ){
|
|
$selected = ( SP_Config::getValue('account_count') == $num) ? 'SELECTED' : '';
|
|
echo "<option $selected>$num</option>";
|
|
}
|
|
?>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('Resultados en Tarjetas'); ?>
|
|
<?php SP_Common::printHelpButton("config", 25); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<label for="resultsascards"><?php echo ($chkResultsAsCards) ? 'ON' : 'OFF'; ?></label>
|
|
<input type="checkbox" name="resultsascards" id="resultsascards" class="checkbox" <?php echo $chkResultsAsCards.' '.$isDisabled; ?> />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<!--WIKI-->
|
|
<div id="title" class="midroundup titleNormal">
|
|
<?php echo _('Wiki'); ?>
|
|
</div>
|
|
|
|
<table id="tblWiki" class="data tblConfig round">
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('Habilitar enlaces Wiki'); ?>
|
|
<?php SP_Common::printHelpButton("config", 7); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<label for="wikienabled"><?php echo ($chkWiki) ? 'ON' : 'OFF'; ?></label>
|
|
<input type="checkbox" name="wiki_enabled" id="wikienabled" class="checkbox" <?php echo $chkWiki.' '.$isDisabled; ?> />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('URL de búsqueda Wiki'); ?>
|
|
<?php SP_Common::printHelpButton("config", 8); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<input type="text" name="wiki_searchurl" class="txtLong" value="<?php echo SP_Config::getValue('wiki_searchurl'); ?>" maxlength="128" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('URL de página en Wiki'); ?>
|
|
<?php SP_Common::printHelpButton("config", 9); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<input type="text" name="wiki_pageurl" class="txtLong" value="<?php echo SP_Config::getValue('wiki_pageurl'); ?>" maxlength="128" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('Prefijo para nombre de cuenta'); ?>
|
|
<?php SP_Common::printHelpButton("config", 10); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<input type="text" name="wiki_filter" id="wikifilter" value="<?php echo SP_Config::getValue('wiki_filter'); ?>" />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<!--LDAP-->
|
|
|
|
<div id="title" class="midroundup titleNormal">
|
|
<?php echo _('LDAP'); ?>
|
|
</div>
|
|
|
|
<table id="tblLdap" class="data tblConfig round">
|
|
<?php if ( SP_Util::ldapIsAvailable() && ! $isDemoMode ): ?>
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('Habilitar LDAP'); ?>
|
|
<?php SP_Common::printHelpButton("config", 11); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<label for="ldapenabled"><?php echo ($chkLdap) ? 'ON' : 'OFF'; ?></label>
|
|
<input type="checkbox" name="ldap_enabled" id="ldapenabled" class="checkbox" <?php echo $chkLdap.' '.$isDisabled; ?> />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('Servidor'); ?>
|
|
<?php SP_Common::printHelpButton("config", 15); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<input type="text" name="ldap_server" value="<?php echo SP_Config::getValue('ldap_server'); ?>" maxlength="128" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('Usuario de conexión'); ?>
|
|
<?php SP_Common::printHelpButton("config", 12); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<input type="text" name="ldap_binduser" value="<?php echo SP_Config::getValue('ldap_binduser'); ?>" maxlength="128" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('Clave de conexión'); ?>
|
|
<?php SP_Common::printHelpButton("config", 17); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<input type="password" name="ldap_bindpass" value="<?php echo SP_Config::getValue('ldap_bindpass'); ?>" maxlength="128" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('Base de búsqueda'); ?>
|
|
<?php SP_Common::printHelpButton("config", 13); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<input type="text" name="ldap_base" class="txtLong" value="<?php echo SP_Config::getValue('ldap_base'); ?>" maxlength="128" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('Grupo'); ?>
|
|
<?php SP_Common::printHelpButton("config", 14); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<input type="text" name="ldap_group" class="txtLong" value="<?php echo SP_Config::getValue('ldap_group'); ?>" maxlength="128" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('Grupo por Defecto'); ?>
|
|
<?php SP_Common::printHelpButton("config", 27); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<?php SP_Html::printSelect(DB::getValuesForSelect('usrGroups', 'usergroup_id', 'usergroup_name'), $groupsSelProp); ?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('Perfil por Defecto'); ?>
|
|
<?php SP_Common::printHelpButton("config", 28); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<?php SP_Html::printSelect(DB::getValuesForSelect('usrProfiles', 'userprofile_id', 'userprofile_name'), $profilesSelProp); ?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('Active Directory'); ?>
|
|
<?php SP_Common::printHelpButton("config", 26); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<label for="ldap_ads"><?php echo ($chkLdapADS) ? 'ON' : 'OFF'; ?></label>
|
|
<input type="checkbox" name="ldap_ads" id="ldap_ads" class="checkbox" <?php echo $chkLdapADS.' '.$isDisabled; ?> />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('Comprobar'); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<img src="imgs/refresh.png" class="inputImg" title="<?php echo _('Comprobar conexión con LDAP'); ?>" onclick="checkLdapConn();"/>
|
|
</td>
|
|
</tr>
|
|
<?php else: ?>
|
|
<tr>
|
|
<td class="option-disabled">
|
|
<?php echo _('Módulo no disponible'); ?>
|
|
</td>
|
|
</tr>
|
|
<?php endif; ?>
|
|
</table>
|
|
|
|
<!--MAIL-->
|
|
<div id="title" class="midroundup titleNormal">
|
|
<?php echo _('Correo'); ?>
|
|
</div>
|
|
|
|
<table id="tblMail" class="data tblConfig round">
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('Habilitar notificaciones de correo'); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<label for="mailenabled"><?php echo ($chkMail) ? 'ON' : 'OFF'; ?></label>
|
|
<input type="checkbox" name="mail_enabled" id="mailenabled" class="checkbox" <?php echo $chkMail.' '.$isDisabled; ?> />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('Servidor'); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<input type="text" name="mail_server" size="20" value="<?php echo SP_Config::getValue('mail_server','localhost'); ?>" maxlength="128" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('Puerto'); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<input type="text" name="mail_port" size="20" value="<?php echo SP_Config::getValue('mail_port',25); ?>" maxlength="5" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('Habilitar Autentificación'); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<label for="mailauthenabled"><?php echo ($chkMailAuth) ? 'ON' : 'OFF'; ?></label>
|
|
<input type="checkbox" name="mail_authenabled" id="mailauthenabled" class="checkbox" <?php echo $chkMailAuth.' '.$isDisabled; ?> />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('Usuario'); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<input type="text" name="mail_user" size="20" value="<?php echo SP_Config::getValue('mail_user'); ?>" maxlength="50" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('Clave'); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<input type="password" name="mail_pass" size="20" value="<?php echo SP_Config::getValue('mail_pass'); ?>" maxlength="50" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('Seguridad'); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<select name="mail_security" id="sel-mailsecurity" size="1">
|
|
|
|
<?php
|
|
echo '<option>'._('Deshabilitada').'</option>';
|
|
foreach ( $mailSecurity as $security ){
|
|
$selected = ( SP_Config::getValue('mail_security') == $security ) ? "SELECTED" : "";
|
|
echo "<option $selected>$security</option>";
|
|
}
|
|
?>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('Dirección de correo de envío'); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<input type="text" name="mail_from" size="20" value="<?php echo SP_Config::getValue('mail_from'); ?>" maxlength="128" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="descField">
|
|
<?php echo _('Habilitar peticiones por correo'); ?>
|
|
</td>
|
|
<td class="valField">
|
|
<label for="mailrequestsenabled"><?php echo ($chkMailRequests) ? 'ON' : 'OFF'; ?></label>
|
|
<input type="checkbox" name="mail_requestsenabled" id="mailrequestsenabled" class="checkbox" <?php echo $chkMailRequests.' '.$isDisabled; ?> />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<?php if ( $isDemoMode ): ?>
|
|
<input type="hidden" name="log_enabled" value="1" />
|
|
<input type="hidden" name="files_enabled" value="1" />
|
|
<input type="hidden" name="wiki_enabled" value="1" />
|
|
<?php endif; ?>
|
|
<input type="hidden" name="onCloseAction" value="<?php echo $onCloseAction ?>" />
|
|
<input type="hidden" name="activeTab" value="<?php echo $activeTab ?>" />
|
|
<input type="hidden" name="action" value="config" />
|
|
<input type="hidden" name="isAjax" value="1" />
|
|
<input type="hidden" name="sk" value="<?php echo SP_Common::getSessionKey(true); ?>">
|
|
</form>
|
|
|
|
<div class="action">
|
|
<ul>
|
|
<li
|
|
><img src="imgs/check.png" title="<?php echo _('Guardar'); ?>" class="inputImg" OnClick="configMgmt('saveconfig');" />
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<script>
|
|
$("#sel-sitelang,#sel-account_link,#sel-account_count,#sel-mailsecurity").chosen({disable_search : true});
|
|
$('#frmConfig').find('.checkbox').button();
|
|
$('#frmConfig').find('.ui-button').click(function(){
|
|
// El cambio de clase se produce durante el evento de click
|
|
// Si tiene la clase significa que el estado anterior era ON y ahora es OFF
|
|
if ( $(this).hasClass('ui-state-active') ){
|
|
$(this).children().html('OFF');
|
|
} else{
|
|
$(this).children().html('ON');
|
|
}
|
|
});
|
|
$('#allowed_exts').tagsInput({
|
|
'width':'350px',
|
|
'defaultText':'<?php echo _('Añadir extensión'); ?>',
|
|
'defaultRemoveText':'<?php echo _('Eliminar extensión'); ?>',
|
|
'removeWithBackspace' : false,
|
|
'tagsToUpper' : true,
|
|
'maxChars' : 4,
|
|
'onAddTag' : function(){
|
|
// Fix scrolling to bottom
|
|
var $tagsbox = $(this).next();
|
|
$tagsbox.animate({scrollTop: $tagsbox.height()});
|
|
|
|
if ( $tagsbox.find('img:last').attr('alt') != 'warning' ){
|
|
$tagsbox.find('div:last').prev().append('<img src="imgs/warning.png" alt="warning" class="iconMini" title="' + LANG[13] + '" />');
|
|
}
|
|
},
|
|
'onRemoveTag' : function(){
|
|
var $tagsbox = $(this).next();
|
|
|
|
if ( $tagsbox.find('img:last').attr('alt') != 'warning' ){
|
|
$tagsbox.find('div:last').prev().append('<img src="imgs/warning.png" alt="warning" class="iconMini" title="' + LANG[13] + '"/>');
|
|
}
|
|
},
|
|
onChange : function(){
|
|
// Fix tooltip on refresh the tags list
|
|
$(this + '[title]').powerTip(powertipOptions);
|
|
}
|
|
});
|
|
$('#wikifilter').tagsInput({
|
|
'width':'350px',
|
|
'height':'50px',
|
|
'defaultText':'<?php echo _('Añadir filtro'); ?>',
|
|
'defaultRemoveText':'<?php echo _('Eliminar filtro'); ?>',
|
|
'removeWithBackspace' : false,
|
|
onAddTag : function(){
|
|
// Fix scrolling to bottom
|
|
var $tagsbox = $(this).next();
|
|
$tagsbox.animate({scrollTop: $tagsbox.height()});
|
|
|
|
if ( $tagsbox.find('img:last').attr('alt') != 'warning' ){
|
|
$tagsbox.find('div:last').prev().append('<img src="imgs/warning.png" alt="warning" class="iconMini" title="' + LANG[13] + '"/>');
|
|
}
|
|
},
|
|
onRemoveTag : function(){
|
|
var $tagsbox = $(this).next();
|
|
|
|
if ( $tagsbox.find('img:last').attr('alt') != 'warning' ){
|
|
$tagsbox.find('div:last').prev().append('<img src="imgs/warning.png" alt="warning" class="iconMini" title="' + LANG[13] + '"/>');
|
|
}
|
|
},
|
|
onChange : function(){
|
|
var $tagsbox = $(this).next();
|
|
last_width = $tagsbox.find("span:last").width() + 10;
|
|
$tagsbox.find(".tag:last").css('width', last_width);
|
|
|
|
// Fix tooltip on refresh the tags list
|
|
$(this + '[title]').powerTip(powertipOptions);
|
|
}
|
|
});
|
|
$("#ldap_defaultgroup").chosen({
|
|
placeholder_text_single: "<?php echo _('Seleccionar Grupo'); ?>",
|
|
disable_search_threshold: 10,
|
|
no_results_text: "<?php echo _('Sin resultados'); ?>"
|
|
});
|
|
$("#ldap_defaultprofile").chosen({
|
|
placeholder_text_single: "<?php echo _('Seleccionar Perfil'); ?>",
|
|
disable_search_threshold: 10,
|
|
no_results_text: "<?php echo _('Sin resultados'); ?>"
|
|
});
|
|
</script>
|