Skip to content
Snippets Groups Projects
Commit 7d08bd45 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Checkstyle

parent de621f05
No related branches found
No related tags found
No related merge requests found
......@@ -22,6 +22,9 @@
include_once(DOL_DOCUMENT_ROOT."/core/boxes/modules_boxes.php");
/**
* Class to manage the box of customer activity (invoice, order, proposal)
*/
class box_activity extends ModeleBoxes
{
var $boxcode="activity";
......@@ -36,7 +39,7 @@ class box_activity extends ModeleBoxes
var $info_box_contents = array();
/**
* \brief Constructeur de la classe
* Constructor
*/
function box_activity()
{
......@@ -50,10 +53,12 @@ class box_activity extends ModeleBoxes
}
/**
* \brief Charge les donnees en memoire pour affichage ulterieur
* \param $max Nombre maximum d'enregistrements a charger
* Charge les donnees en memoire pour affichage ulterieur
*
* @param int $max Maximum number of records to load
* @return void
*/
function loadBox()
function loadBox($max=5)
{
global $conf, $user, $langs, $db;
......@@ -219,6 +224,13 @@ class box_activity extends ModeleBoxes
$this->info_box_contents[$i][5] = array('td' => 'align="right"', 'text' => "");
}
/**
* Method to show box
*
* @param array $head Array with properties of box title
* @param array $contents Array with properties of box lines
* @return void
*/
function showBox($head = null, $contents = null)
{
parent::showBox($this->info_box_head, $this->info_box_contents);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment