* Copyright (C) 2005-2012 Regis Houssin * Copyright (C) 2012-20113 Juanjo Menent * * This program 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. * * This program 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 this program. If not, see . */ /** * \file htdocs/admin/fckeditor.php * \ingroup fckeditor * \brief Page d'activation du module FCKeditor dans les autres modules */ require '../main.inc.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php'; require_once DOL_DOCUMENT_ROOT.'/core/class/doleditor.class.php'; $langs->load("admin"); $langs->load("fckeditor"); $action = GETPOST('action','alpha'); // Possible modes are: // dolibarr_details // dolibarr_notes // dolibarr_readonly // dolibarr_mailings // Full (not sure this one is used) $mode=GETPOST('mode')?GETPOST('mode','alpha'):'dolibarr_notes'; if (!$user->admin) accessforbidden(); // Constante et traduction de la description du module $modules = array( 'SOCIETE' => 'FCKeditorForCompany', 'PRODUCTDESC' => 'FCKeditorForProduct', 'MAILING' => 'FCKeditorForMailing', 'DETAILS' => 'FCKeditorForProductDetails', 'USERSIGN' => 'FCKeditorForUserSignature', 'MAIL' => 'FCKeditorForMail' ); // Conditions pour que l'option soit proposee $conditions = array( 'SOCIETE' => 1, 'PRODUCTDESC' => (! empty($conf->product->enabled) || ! empty($conf->service->enabled)), 'MAILING' => ! empty($conf->mailing->enabled), 'DETAILS' => (! empty($conf->facture->enabled) || ! empty($conf->propal->enabled) || ! empty($conf->commande->enabled)), 'USERSIGN' => 1, 'MAIL' => (! empty($conf->facture->enabled) || ! empty($conf->propal->enabled) || ! empty($conf->commande->enabled)) ); // Picto $picto = array( 'SOCIETE' => 'generic', 'PRODUCTDESC' => 'product', 'MAILING' => 'email', 'DETAILS' => 'generic', 'USERSIGN' => 'user', 'MAIL' => 'email' ); /* * Actions */ foreach($modules as $const => $desc) { if ($action == 'activate_'.strtolower($const)) { dolibarr_set_const($db, "FCKEDITOR_ENABLE_".$const, "1",'chaine',0,'',$conf->entity); // Si fckeditor est active dans la description produit/service, on l'active dans les formulaires if ($const == 'PRODUCTDESC' && ! empty($conf->global->PRODUIT_DESC_IN_FORM)) { dolibarr_set_const($db, "FCKEDITOR_ENABLE_DETAILS", "1",'chaine',0,'',$conf->entity); } header("Location: ".$_SERVER["PHP_SELF"]); exit; } if ($action == 'disable_'.strtolower($const)) { dolibarr_del_const($db, "FCKEDITOR_ENABLE_".$const,$conf->entity); header("Location: ".$_SERVER["PHP_SELF"]); exit; } } if (GETPOST('save','alpha')) { $res=dolibarr_set_const($db, "FCKEDITOR_TEST", GETPOST('formtestfield'),'chaine',0,'',$conf->entity); if ($res > 0) setEventMessage($langs->trans("RecordModifiedSuccessfully")); } /* * View */ llxHeader(); $linkback=''.$langs->trans("BackToModuleList").''; print_fiche_titre($langs->trans("AdvancedEditor"),$linkback,'title_setup'); print '
'; $var=true; if (empty($conf->use_javascript_ajax)) { setEventMessage(array($langs->trans("NotAvailable"), $langs->trans("JavascriptDisabled")), 'errors'); } else { print ''; print ''; print ''; print ''; print "\n"; // Modules foreach($modules as $const => $desc) { // Si condition non remplie, on ne propose pas l'option if (! $conditions[$const]) continue; $var=!$var; print ""; print ''; print ''; print '"; print ''; } print '
'.$langs->trans("ActivateFCKeditor").''.$langs->trans("Action").'
'.img_object("",$picto[$const]).''.$langs->trans($desc).''; $constante = 'FCKEDITOR_ENABLE_'.$const; $value = (isset($conf->global->$constante)?$conf->global->$constante:0); if ($value == 0) { print ''.img_picto($langs->trans("Disabled"),'switch_off').''; } else if ($value == 1) { print ''.img_picto($langs->trans("Enabled"),'switch_on').''; } print "
'."\n"; print '
'."\n"; print_fiche_titre($langs->trans("TestSubmitForm"),'(mode='.$mode.')',''); print '
'."\n"; print ''; $uselocalbrowser=true; $readonly=($mode=='dolibarr_readonly'?1:0); $editor=new DolEditor('formtestfield',isset($conf->global->FCKEDITOR_TEST)?$conf->global->FCKEDITOR_TEST:'Test','',200,$mode,'In', true, $uselocalbrowser, 1, 120, 8, $readonly); $editor->Create(); print '
'."\n"; print '
'; print '
'."\n"; // Add env of ckeditor // This is to show how CKEditor detect browser to understand why editor is disabled or not if (1 == 2) // Change this to enable output { print '
'; } /* print ''; print $_POST["formtestfield"]; print ''; print $conf->global->FCKEDITOR_TEST; */ } llxFooter(); $db->close();