Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dolibarr
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
2c1e892e
Commit
2c1e892e
authored
10 years ago
by
Raphaël Doursenaud
Browse files
Options
Downloads
Patches
Plain Diff
Enhanced boxes model documentation
parent
c3b30893
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
htdocs/core/boxes/modules_boxes.php
+89
-29
89 additions, 29 deletions
htdocs/core/boxes/modules_boxes.php
with
89 additions
and
29 deletions
htdocs/core/boxes/modules_boxes.php
+
89
−
29
View file @
2c1e892e
<?php
/* Copyright (C) 2004-2013 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2005-2012 Regis Houssin <regis.houssin@capnetworks.com>
/* Copyright (C) 2004-2013 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2005-2012 Regis Houssin <regis.houssin@capnetworks.com>
* Copyright (C) 2014 Raphaël Doursenaud <rdoursenaud@gpcsolutions.fr>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
@@ -25,31 +26,88 @@
/**
* Parent class of boxes
* Class ModeleBoxes
*
* Boxes parent class
*/
class
ModeleBoxes
// Can't be abtract as it is instantiated to build "empty" boxes
{
var
$db
;
var
$error
=
''
;
var
$max
=
5
;
var
$enabled
=
1
;
var
$rowid
;
var
$id
;
var
$position
;
var
$box_order
;
var
$fk_user
;
var
$sourcefile
;
var
$class
;
var
$box_id
;
var
$note
;
/**
* @var DoliDB Database handler
*/
public
$db
;
/**
* @var string Error message
*/
public
$error
=
''
;
/**
* @var int Maximum lines
*/
public
$max
=
5
;
/**
* @var int Status
*/
public
$enabled
=
1
;
/**
* @var int Box definition database ID
*/
public
$rowid
;
/**
* @var int ID
* @deprecated Same as box_id?
*/
public
$id
;
/**
* Constructor
* @var int Position?
*/
public
$position
;
/**
* @var string Display order
*/
public
$box_order
;
/**
* @var int User ID
*/
public
$fk_user
;
/**
* @var string Source file
*/
public
$sourcefile
;
/**
* @var string Class name
*/
public
$class
;
/**
* @var string ID
*/
public
$box_id
;
/**
* @var string Alphanumeric ID
*/
public
$boxcode
;
/**
* @var string Note
*/
public
$note
;
/**
* Constructor
*
*
@param
DoliDB
$db
Database handler
*
@param
string
$param
More parameters
*
@param
DoliDB
$db
Database handler
* @param
string
$param
More parameters
*/
function
__construct
(
$db
,
$param
=
''
)
{
...
...
@@ -57,9 +115,9 @@ class ModeleBoxes // Can't be abtract as it is instantiated to build "empty"
}
/**
*
Return last error message
* Return last error message
*
*
@return
string
Error message
* @return
string
Error message
*/
function
error
()
{
...
...
@@ -68,10 +126,11 @@ class ModeleBoxes // Can't be abtract as it is instantiated to build "empty"
/**
*
Load a box line from its rowid
* Load a box line from its rowid
*
* @param int $rowid Row id to load
* @return int <0 if KO, >0 if OK
* @param int $rowid Row id to load
*
* @return int <0 if KO, >0 if OK
*/
function
fetch
(
$rowid
)
{
...
...
@@ -110,11 +169,12 @@ class ModeleBoxes // Can't be abtract as it is instantiated to build "empty"
/**
* Standard method to show a box (usage by boxes not mandatory, a box can still use its own showBox function)
*Standard method to show a box (usage by boxes not mandatory, a box can still use its own showBox function)
*
* @param array $head Array with properties of box title
* @param array $contents Array with properties of box lines
*
* @param array $head Array with properties of box title
* @param array $contents Array with properties of box lines
* @return void
* @return void
*/
function
showBox
(
$head
,
$contents
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment