Checkstyle
This commit is contained in:
parent
325d055fbb
commit
78ae7dc075
@ -741,7 +741,7 @@ class pdf_canelle extends ModelePDFSuppliersInvoices
|
|||||||
$y+=3;
|
$y+=3;
|
||||||
$row = $this->db->fetch_object($resql);
|
$row = $this->db->fetch_object($resql);
|
||||||
|
|
||||||
$pdf->SetXY($tab3_posx, $tab3_top+$y );
|
$pdf->SetXY($tab3_posx, $tab3_top+$y);
|
||||||
$pdf->MultiCell(20, 3, dol_print_date($this->db->jdate($row->date),'day',false,$outputlangs,true), 0, 'L', 0);
|
$pdf->MultiCell(20, 3, dol_print_date($this->db->jdate($row->date),'day',false,$outputlangs,true), 0, 'L', 0);
|
||||||
$pdf->SetXY($tab3_posx+21, $tab3_top+$y);
|
$pdf->SetXY($tab3_posx+21, $tab3_top+$y);
|
||||||
$pdf->MultiCell(20, 3, price($row->amount), 0, 'L', 0);
|
$pdf->MultiCell(20, 3, price($row->amount), 0, 'L', 0);
|
||||||
|
|||||||
@ -24,8 +24,7 @@
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \class InterfaceLogevents
|
* Class of triggers for security events
|
||||||
* \brief Class of triggers for security events
|
|
||||||
*/
|
*/
|
||||||
class InterfaceLogevents
|
class InterfaceLogevents
|
||||||
{
|
{
|
||||||
|
|||||||
@ -23,8 +23,7 @@
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \class InterfacePaypalWorkflow
|
* Class of triggers for paypal module
|
||||||
* \brief Class of triggers for paypal module
|
|
||||||
*/
|
*/
|
||||||
class InterfacePaypalWorkflow
|
class InterfacePaypalWorkflow
|
||||||
{
|
{
|
||||||
|
|||||||
@ -24,8 +24,7 @@
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \class InterfaceWorkflowManager
|
* Class of triggers for workflow module
|
||||||
* \brief Class of triggers for workflow module
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
class InterfaceWorkflowManager
|
class InterfaceWorkflowManager
|
||||||
@ -95,7 +94,6 @@ class InterfaceWorkflowManager
|
|||||||
* @param User $user Object user
|
* @param User $user Object user
|
||||||
* @param Translate $langs Object langs
|
* @param Translate $langs Object langs
|
||||||
* @param conf $conf Object conf
|
* @param conf $conf Object conf
|
||||||
* @param string $entity Value for instance of data (Always 1 except if module MultiCompany is installed)
|
|
||||||
* @return int <0 if KO, 0 if no triggered ran, >0 if OK
|
* @return int <0 if KO, 0 if no triggered ran, >0 if OK
|
||||||
*/
|
*/
|
||||||
function run_trigger($action,$object,$user,$langs,$conf)
|
function run_trigger($action,$object,$user,$langs,$conf)
|
||||||
|
|||||||
@ -25,8 +25,7 @@
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \class InterfaceActionsAuto
|
* Class of triggered functions for agenda module
|
||||||
* \brief Class of triggered functions for agenda module
|
|
||||||
*/
|
*/
|
||||||
class InterfaceActionsAuto
|
class InterfaceActionsAuto
|
||||||
{
|
{
|
||||||
|
|||||||
@ -24,8 +24,7 @@ require_once (DOL_DOCUMENT_ROOT."/core/class/ldap.class.php");
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \class InterfaceLdapsynchro
|
* Class of triggers for ldap module
|
||||||
* \brief Class of triggers for ldap module
|
|
||||||
*/
|
*/
|
||||||
class InterfaceLdapsynchro
|
class InterfaceLdapsynchro
|
||||||
{
|
{
|
||||||
|
|||||||
@ -24,8 +24,7 @@
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \class InterfaceNotification
|
* Class of triggers for notification module
|
||||||
* \brief Class of triggers for notification module
|
|
||||||
*/
|
*/
|
||||||
class InterfaceNotification
|
class InterfaceNotification
|
||||||
{
|
{
|
||||||
|
|||||||
@ -31,8 +31,7 @@
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \class InterfaceDemo
|
* Class of triggers for demo module
|
||||||
* \brief Class of triggers for demo module
|
|
||||||
*/
|
*/
|
||||||
class InterfaceDemo
|
class InterfaceDemo
|
||||||
{
|
{
|
||||||
@ -57,6 +56,7 @@ class InterfaceDemo
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Return name of trigger file
|
* Return name of trigger file
|
||||||
|
*
|
||||||
* @return string Name of trigger file
|
* @return string Name of trigger file
|
||||||
*/
|
*/
|
||||||
function getName()
|
function getName()
|
||||||
@ -66,6 +66,7 @@ class InterfaceDemo
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Return description of trigger file
|
* Return description of trigger file
|
||||||
|
*
|
||||||
* @return string Description of trigger file
|
* @return string Description of trigger file
|
||||||
*/
|
*/
|
||||||
function getDesc()
|
function getDesc()
|
||||||
@ -75,6 +76,7 @@ class InterfaceDemo
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Return version of trigger file
|
* Return version of trigger file
|
||||||
|
*
|
||||||
* @return string Version of trigger file
|
* @return string Version of trigger file
|
||||||
*/
|
*/
|
||||||
function getVersion()
|
function getVersion()
|
||||||
|
|||||||
@ -25,14 +25,14 @@
|
|||||||
/**
|
/**
|
||||||
* \file htdocs/user/class/user.class.php
|
* \file htdocs/user/class/user.class.php
|
||||||
* \brief File of class to manage users
|
* \brief File of class to manage users
|
||||||
|
* \ingroup core
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require_once(DOL_DOCUMENT_ROOT ."/core/class/commonobject.class.php");
|
require_once(DOL_DOCUMENT_ROOT ."/core/class/commonobject.class.php");
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \class User
|
* Class to manage users
|
||||||
* \brief Class to manage users
|
|
||||||
*/
|
*/
|
||||||
class User extends CommonObject
|
class User extends CommonObject
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user