Ajout d'une permission gnrale

This commit is contained in:
Rodolphe Quiedeville 2005-08-25 14:52:30 +00:00
parent 3d054f421a
commit e55df8a39c

View File

@ -1,5 +1,5 @@
<?php
/* Copyright (C) 2003-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
/* Copyright (C) 2003-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2004 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2004 Sebastien Di Cintio <sdicintio@ressource-toi.org>
* Copyright (C) 2004 Benoit Mortier <benoit.mortier@opensides.be>
@ -92,6 +92,19 @@ class modCommercial extends DolibarrModules
function init()
{
$sql = array();
// Permissions
$this->remove();
$r = 1;
// 261 : Permission générale
$this->rights[$r][0] = 261;
$this->rights[$r][1] = 'Informations commerciales';
$this->rights[$r][2] = 'r';
$this->rights[$r][3] = 1;
$this->rights[$r][4] = 'main';
$this->rights[$r][5] = 'lire';
$r++;
return $this->_init($sql);
}