dolibarr/htdocs/core/class/html.formcron.class.php

106 lines
3.0 KiB
PHP
Raw Normal View History

2013-03-22 17:10:17 +01:00
<?php
/*
* Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro>
2013-08-22 16:49:23 +02:00
*
* 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
2014-10-30 20:41:08 +01:00
* the Free Software Foundation; either version 3 of the License, or
2013-08-22 16:49:23 +02:00
* (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
2019-09-23 21:55:30 +02:00
* along with this program. If not, see <https://www.gnu.org/licenses/>.
* or see https://www.gnu.org/
2013-08-22 16:49:23 +02:00
*/
2013-03-22 17:10:17 +01:00
/**
2019-02-27 23:55:18 +01:00
* \file htdocs/core/class/html.formcron.class.php
* \brief Fichier de la class des functions predefinie de composants html cron
2013-08-22 16:49:23 +02:00
*/
2013-03-22 17:10:17 +01:00
/**
* Class to manage building of HTML components
2013-08-22 16:49:23 +02:00
*/
2013-03-22 17:10:17 +01:00
class FormCron extends Form
{
/**
* @var DoliDB Database handler.
*/
public $db;
2018-09-02 23:01:14 +02:00
/**
* @var string Error code (or message)
*/
public $error = '';
2013-03-22 17:10:17 +01:00
/**
* Constructor
*
* @param DoliDB $db Database handler
*/
public function __construct($db)
{
$this->db = $db;
}
2013-03-22 17:10:17 +01:00
// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
/**
* Display On Off selector
*
* @param string $htmlname Html control name
* @param integer $selected selected value
* @param integer $readonly Select is read only or not
* @return string HTML select field
*/
public function select_typejob($htmlname, $selected = 0, $readonly = 0)
{
// phpcs:enable
global $langs;
$langs->load('cron@cron');
$out = '';
if (!empty($readonly)) {
if ($selected == 'command') {
$out = $langs->trans('CronType_command');
$out .= '<SELECT name="'.$htmlname.'" id="'.$htmlname.'" style="display:none"/>';
$out .= '<OPTION value="command" selected>'.$langs->trans('CronType_command').'</OPTION>';
$out .= '</SELECT>';
} elseif ($selected == 'method') {
$out = $langs->trans('CronType_method');
$out .= '<SELECT name="'.$htmlname.'" id="'.$htmlname.'" style="display:none"/>';
$out .= '<OPTION value="method" selected>'.$langs->trans('CronType_method').'</OPTION>';
$out .= '</SELECT>';
}
} else {
$out = '<SELECT class="flat" name="'.$htmlname.'" id="'.$htmlname.'" />';
if ($selected == 'command') {
$selected_attr = ' selected ';
} else {
$selected_attr = '';
}
$out .= '<OPTION value="command" '.$selected_attr.'>'.$langs->trans('CronType_command').'</OPTION>';
if ($selected == 'method') {
$selected_attr = ' selected ';
} else {
$selected_attr = '';
}
$out .= '<OPTION value="method" '.$selected_attr.'>'.$langs->trans('CronType_method').'</OPTION>';
$out .= '</SELECT>';
}
2022-11-05 12:48:16 +01:00
if (empty($readonly)) {
$out .= ajax_combobox($htmlname);
}
return $out;
}
2013-03-22 17:10:17 +01:00
}