Fixing style errors.

This commit is contained in:
stickler-ci 2021-07-09 16:41:41 +00:00
parent e45d5c1d0d
commit 4272f93aa4
30 changed files with 65 additions and 65 deletions

View File

@ -77,10 +77,10 @@ $result = restrictedArea($user, 'adherent', $object->id, '', '', 'socid', 'rowid
* Actions
*/
$reshook = $hookmanager->executeHooks('doActions', array(), $object, $action); // Note that $action and $object may have been modified by some hooks
if ($reshook < 0)
if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
if (empty($reshook))
if (empty($reshook))
include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once

View File

@ -71,10 +71,10 @@ $permissionnote = 1;
*/
$reshook = $hookmanager->executeHooks('doActions', array(), $object, $action); // Note that $action and $object may have been modified by some hooks
if ($reshook < 0)
if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
if (empty($reshook))
if (empty($reshook))
include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once
/*

View File

@ -71,10 +71,10 @@ restrictedArea($user, 'bom', $object->id, 'bom_bom', '', '', 'rowid', $isdraft);
*/
$reshook = $hookmanager->executeHooks('doActions', array(), $object, $action); // Note that $action and $object may have been modified by some hooks
if ($reshook < 0)
if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
if (empty($reshook))
if (empty($reshook))
include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once

View File

@ -66,10 +66,10 @@ restrictedArea($user, 'propal', $object->id, 'propal');
$permissionnote = $user->rights->propale->creer; // Used by the include of actions_setnotes.inc.php
$reshook = $hookmanager->executeHooks('doActions', array(), $object, $action); // Note that $action and $object may have been modified by some hooks
if ($reshook < 0)
if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
if (empty($reshook))
if (empty($reshook))
include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once

View File

@ -66,10 +66,10 @@ $permissionnote = $user->rights->commande->creer; // Used by the include of acti
*/
$reshook = $hookmanager->executeHooks('doActions', array(), $object, $action); // Note that $action and $object may have been modified by some hooks
if ($reshook < 0)
if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
if (empty($reshook))
if (empty($reshook))
include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once

View File

@ -54,7 +54,7 @@ $socid = 0;
if ($user->socid) {
$socid = $user->socid;
}
$hookmanager->initHooks(array('invoicenote'));
$hookmanager->initHooks(array('invoicenote'));
$result = restrictedArea($user, 'facture', $id, '');
@ -64,10 +64,10 @@ $result = restrictedArea($user, 'facture', $id, '');
*/
$reshook = $hookmanager->executeHooks('doActions', array(), $object, $action); // Note that $action and $object may have been modified by some hooks
if ($reshook < 0)
if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
if (empty($reshook))
if (empty($reshook))
include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once

View File

@ -57,10 +57,10 @@ $hookmanager->initHooks(array('contactnote'));
* Actions
*/
$reshook = $hookmanager->executeHooks('doActions', array(), $object, $action); // Note that $action and $object may have been modified by some hooks
if ($reshook < 0)
if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
if (empty($reshook))
if (empty($reshook))
include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not includ_once

View File

@ -61,10 +61,10 @@ $permissionnote = $user->rights->contrat->creer; // Used by the include of actio
*/
$reshook = $hookmanager->executeHooks('doActions', array(), $object, $action); // Note that $action and $object may have been modified by some hooks
if ($reshook < 0)
if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
if (empty($reshook))
if (empty($reshook))
include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once

View File

@ -47,7 +47,7 @@ $socid = 0;
if ($user->socid) {
$socid = $user->socid;
}
$hookmanager->initHooks(array('donnote'));
$hookmanager->initHooks(array('donnote'));
$result = restrictedArea($user, 'don', $id, '');
@ -61,10 +61,10 @@ $permissionnote = $user->rights->don->creer; // Used by the include of actions_s
* Actions
*/
$reshook = $hookmanager->executeHooks('doActions', array(), $object, $action); // Note that $action and $object may have been modified by some hooks
if ($reshook < 0)
if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
if (empty($reshook))
if (empty($reshook))
include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once
if ($action == 'classin' && $user->rights->don->creer) {

View File

@ -116,10 +116,10 @@ $permissiontoadd = $user->rights->eventorganization->conferenceorboothattendee->
*/
$reshook = $hookmanager->executeHooks('doActions', array(), $object, $action); // Note that $action and $object may have been modified by some hooks
if ($reshook < 0)
if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
if (empty($reshook))
if (empty($reshook))
include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once
/*

View File

@ -79,10 +79,10 @@ $result = restrictedArea($user, 'expedition', $object->id, '');
*/
$reshook = $hookmanager->executeHooks('doActions', array(), $object, $action); // Note that $action and $object may have been modified by some hooks
if ($reshook < 0)
if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
if (empty($reshook))
if (empty($reshook))
include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once

View File

@ -44,7 +44,7 @@ $socid = 0;
if ($user->socid) {
$socid = $user->socid;
}
$hookmanager->initHooks(array('expensereportnote'));
$hookmanager->initHooks(array('expensereportnote'));
$result = restrictedArea($user, 'expensereport', $id, 'expensereport');
@ -75,10 +75,10 @@ if ($object->id > 0) {
*/
$reshook = $hookmanager->executeHooks('doActions', array(), $object, $action); // Note that $action and $object may have been modified by some hooks
if ($reshook < 0)
if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
if (empty($reshook))
if (empty($reshook))
include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once

View File

@ -42,7 +42,7 @@ $action = GETPOST('action', 'aZ09');
if ($user->socid) {
$socid = $user->socid;
}
$hookmanager->initHooks(array('fichinternote'));
$hookmanager->initHooks(array('fichinternote'));
$result = restrictedArea($user, 'ficheinter', $id, 'fichinter');
$object = new Fichinter($db);
@ -55,10 +55,10 @@ $permissionnote = $user->rights->ficheinter->creer; // Used by the include of ac
*/
$reshook = $hookmanager->executeHooks('doActions', array(), $object, $action); // Note that $action and $object may have been modified by some hooks
if ($reshook < 0)
if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
if (empty($reshook))
if (empty($reshook))
include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once

View File

@ -58,10 +58,10 @@ $permissionnote = ($user->rights->fournisseur->commande->creer || $user->rights-
*/
$reshook = $hookmanager->executeHooks('doActions', array(), $object, $action); // Note that $action and $object may have been modified by some hooks
if ($reshook < 0)
if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
if (empty($reshook))
if (empty($reshook))
include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once

View File

@ -60,10 +60,10 @@ $permissionnote = ($user->rights->fournisseur->facture->creer || $user->rights->
*/
$reshook = $hookmanager->executeHooks('doActions', array(), $object, $action); // Note that $action and $object may have been modified by some hooks
if ($reshook < 0)
if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
if (empty($reshook))
if (empty($reshook))
include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once
// Set label

View File

@ -67,10 +67,10 @@ $permissiontoadd = $user->rights->knowledgemanagement->knowledgerecord->write; /
*/
$reshook = $hookmanager->executeHooks('doActions', array(), $object, $action); // Note that $action and $object may have been modified by some hooks
if ($reshook < 0)
if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
if (empty($reshook))
if (empty($reshook))
include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once

View File

@ -42,7 +42,7 @@ $langs->loadLangs(array("loan"));
// Security check
$id = GETPOST('id', 'int');
$hookmanager->initHooks(array('loannote'));
$hookmanager->initHooks(array('loannote'));
$result = restrictedArea($user, 'loan', $id, '&loan');
$object = new Loan($db);
@ -59,10 +59,10 @@ $permissionnote = $user->rights->loan->write; // Used by the include of actions_
$reshook = $hookmanager->executeHooks('doActions', array(), $object, $action); // Note that $action and $object may have been modified by some hooks
if ($reshook < 0)
if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
if (empty($reshook))
if (empty($reshook))
include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once

View File

@ -118,10 +118,10 @@ $permissiontoadd = $user->rights->mymodule->myobject->write; // Used by the incl
*/
$reshook = $hookmanager->executeHooks('doActions', array(), $object, $action); // Note that $action and $object may have been modified by some hooks
if ($reshook < 0)
if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
if (empty($reshook))
if (empty($reshook))
include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once

View File

@ -70,10 +70,10 @@ $permissionnote = $user->rights->mrp->write; // Used by the include of actions_s
$reshook = $hookmanager->executeHooks('doActions', array(), $object, $action); // Note that $action and $object may have been modified by some hooks
if ($reshook < 0)
if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
if (empty($reshook))
if (empty($reshook))
include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once

View File

@ -66,10 +66,10 @@ $permissiontoadd = $user->rights->partnership->write; // Used by the include of
* Actions
*/
$reshook = $hookmanager->executeHooks('doActions', array(), $object, $action); // Note that $action and $object may have been modified by some hooks
if ($reshook < 0)
if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
if (empty($reshook))
if (empty($reshook))
include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once

View File

@ -70,10 +70,10 @@ $hookmanager->initHooks(array('productnote'));
* Actions
*/
$reshook = $hookmanager->executeHooks('doActions', array(), $object, $action); // Note that $action and $object may have been modified by some hooks
if ($reshook < 0)
if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
if (empty($reshook))
if (empty($reshook))
include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not includ_once

View File

@ -57,10 +57,10 @@ $permissionnote = $user->rights->projet->creer; // Used by the include of action
*/
$reshook = $hookmanager->executeHooks('doActions', array(), $object, $action); // Note that $action and $object may have been modified by some hooks
if ($reshook < 0)
if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
if (empty($reshook))
if (empty($reshook))
include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once

View File

@ -93,10 +93,10 @@ $permissionnote = ($user->rights->projet->creer || $user->rights->projet->all->c
*/
$reshook = $hookmanager->executeHooks('doActions', array(), $object, $action); // Note that $action and $object may have been modified by some hooks
if ($reshook < 0)
if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
if (empty($reshook))
if (empty($reshook))
include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once

View File

@ -93,10 +93,10 @@ if ($origin == 'reception') {
*/
$reshook = $hookmanager->executeHooks('doActions', array(), $object, $action); // Note that $action and $object may have been modified by some hooks
if ($reshook < 0)
if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
if (empty($reshook))
if (empty($reshook))
include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once

View File

@ -95,10 +95,10 @@ $result = restrictedArea($user, 'recruitment', $object->id, 'recruitment_recruit
*/
$reshook = $hookmanager->executeHooks('doActions', array(), $object, $action); // Note that $action and $object may have been modified by some hooks
if ($reshook < 0)
if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
if (empty($reshook))
if (empty($reshook))
include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once

View File

@ -100,10 +100,10 @@ $result = restrictedArea($user, 'recruitment', $object->id, 'recruitment_recruit
*/
$reshook = $hookmanager->executeHooks('doActions', array(), $object, $action); // Note that $action and $object may have been modified by some hooks
if ($reshook < 0)
if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
if (empty($reshook))
if (empty($reshook))
include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once

View File

@ -56,10 +56,10 @@ $permissionnote = $user->rights->resource->write; // Used by the include of acti
*/
$reshook = $hookmanager->executeHooks('doActions', array(), $object, $action); // Note that $action and $object may have been modified by some hooks
if ($reshook < 0)
if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
if (empty($reshook))
if (empty($reshook))
include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once

View File

@ -57,10 +57,10 @@ $result = restrictedArea($user, 'societe', $object->id, '&societe');
* Actions
*/
$reshook = $hookmanager->executeHooks('doActions', array(), $object, $action); // Note that $action and $object may have been modified by some hooks
if ($reshook < 0)
if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
if (empty($reshook))
if (empty($reshook))
include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not includ_once
include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not includ_once

View File

@ -61,10 +61,10 @@ $object = new SupplierProposal($db);
$permissionnote = $user->rights->supplier_proposal->creer; // Used by the include of actions_setnotes.inc.php
$reshook = $hookmanager->executeHooks('doActions', array(), $object, $action); // Note that $action and $object may have been modified by some hooks
if ($reshook < 0)
if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
if (empty($reshook))
if (empty($reshook))
include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once

View File

@ -69,10 +69,10 @@ restrictedArea($user, $object->element, $object->id, $object->table_element, 'wo
* Actions
*/
$reshook = $hookmanager->executeHooks('doActions', array(), $object, $action); // Note that $action and $object may have been modified by some hooks
if ($reshook < 0)
if ($reshook < 0)
setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
if (empty($reshook))
if (empty($reshook))
include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once