dolibarr 18.0.6
fiscalyear_info.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2014-2016 Alexandre Spangaro <aspangaro@open-dsi.fr>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <https://www.gnu.org/licenses/>.
16 */
17
24// Load Dolibarr environment
25require '../../main.inc.php';
26require_once DOL_DOCUMENT_ROOT.'/core/lib/fiscalyear.lib.php';
27require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
28require_once DOL_DOCUMENT_ROOT.'/core/class/fiscalyear.class.php';
29
30// Load translation files required by the page
31$langs->loadLangs(array("admin", "compta"));
32
33// Security check
34if ($user->socid > 0) {
36}
37if (!$user->hasRight('accounting', 'fiscalyear', 'write')) {
39}
40
41$id = GETPOST('id', 'int');
42
43
44// View
45
46$title = $langs->trans("Fiscalyear")." - ".$langs->trans("Info");
47
48$help_url = "EN:Module_Double_Entry_Accounting";
49
50llxHeader('', $title, $help_url);
51
52if ($id) {
53 $object = new Fiscalyear($db);
54 $object->fetch($id);
55 $object->info($id);
56
57 $head = fiscalyear_prepare_head($object);
58
59 print dol_get_fiche_head($head, 'info', $langs->trans("Fiscalyear"), 0, 'cron');
60
61 print '<table width="100%"><tr><td>';
62 dol_print_object_info($object);
63 print '</td></tr></table>';
64
65 print '</div>';
66}
67
68// End of page
69llxFooter();
70$db->close();
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Definition wrapper.php:56
llxFooter()
Empty footer.
Definition wrapper.php:70
Class to manage fiscal year.
fiscalyear_prepare_head(Fiscalyear $object)
Prepare array with list of tabs.
dol_print_object_info($object, $usetable=0)
Show informations on an object TODO Move this into html.formother.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.