noalyss Version-9
NOALYSS : serveur de comptabilité et ERP (2002)
Loading...
Searching...
No Matches
todo_list-display_new_note.php
Go to the documentation of this file.
1<?php
2/*
3 * This file is part of NOALYSS.
4 *
5 * NOALYSS is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * NOALYSS is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with NOALYSS; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18*/
19// Copyright Author Dany De Bontridder danydb@aevalys.eu 11/08/24
20/*!
21 * \file
22 * \brief
23 */
24?>
25<div id="add_todo_list" class="box" style="display:none">
26
27 <form method="post">
28 <?php
29 $wDate=new IDate('p_date_todo');
30 $wDate->id='p_date_todo';
31 $wTitle=new IText('p_title');
32 $wDesc=new ITextArea('p_desc');
33 $wDesc->heigh=5;
34 $wDesc->width=40;
35 echo HtmlInput::title_box(_("Note"),"add_todo_list","hide",'',"n");
36 echo _("Date")." ".$wDate->input().'<br>';
37 echo _("Titre")." ".$wTitle->input().'<br>';
38 echo _("Description")."<br>".$wDesc->input().'<br>';
39 echo dossier::hidden();
40 echo HtmlInput::hidden('tl_id',0);
41 echo HtmlInput::submit('save_todo_list',_('Sauve'),'onClick="Effect.Fold(\'add_todo_list\');return true;"');
42 echo HtmlInput::button('hide',_('Annuler'),'onClick="Effect.Fold(\'add_todo_list\');return true;"');
43 ?>
44 </form>
45</div>
$opd_description style
_("actif, passif,charge,...")
Html Input : Input a date format dd.mm.yyyy The property title should be set to indicate what it is e...
Html Input.