This commit is contained in:
Laurent Destailleur 2012-01-26 13:49:15 +01:00
parent 491d3dd5b0
commit 97b176ba8d
21 changed files with 77 additions and 22 deletions

View File

@ -26,7 +26,7 @@
include_once(DOL_DOCUMENT_ROOT."/core/boxes/modules_boxes.php");
/**
* Class to manage the box to show actions
* Class to manage the box to show last events
*/
class box_actions extends ModeleBoxes
{

View File

@ -22,7 +22,9 @@
*/
include_once(DOL_DOCUMENT_ROOT."/core/boxes/modules_boxes.php");
/**
* Class to manage the box to show bookmarks
*/
class box_bookmarks extends ModeleBoxes {
var $boxcode="bookmarks";

View File

@ -26,6 +26,9 @@
include_once(DOL_DOCUMENT_ROOT."/core/boxes/modules_boxes.php");
/**
* Class to manage the box to show last thirdparties
*/
class box_clients extends ModeleBoxes {
var $boxcode="lastcustomers";

View File

@ -26,6 +26,9 @@
include_once(DOL_DOCUMENT_ROOT."/core/boxes/modules_boxes.php");
/**
* Class to manage the box to show last orders
*/
class box_commandes extends ModeleBoxes {
var $boxcode="lastcustomerorders";

View File

@ -26,6 +26,9 @@ include_once(DOL_DOCUMENT_ROOT."/core/boxes/modules_boxes.php");
include_once(DOL_DOCUMENT_ROOT."/compta/bank/class/account.class.php");
/**
* Class to manage the box to show last users
*/
class box_comptes extends ModeleBoxes {
var $boxcode="currentaccounts";

View File

@ -27,6 +27,9 @@ include_once(DOL_DOCUMENT_ROOT."/core/boxes/modules_boxes.php");
include_once(DOL_DOCUMENT_ROOT."/contact/class/contact.class.php");
/**
* Class to manage the box to show last contacts
*/
class box_contacts extends ModeleBoxes {
var $boxcode="lastcontacts";

View File

@ -24,6 +24,9 @@
include_once(DOL_DOCUMENT_ROOT."/core/boxes/modules_boxes.php");
/**
* Class to manage the box to show last contracts
*/
class box_contracts extends ModeleBoxes {
var $boxcode="lastcontracts";

View File

@ -28,6 +28,9 @@ include_once(DOL_DOCUMENT_ROOT."/core/class/rssparser.class.php");
include_once(DOL_DOCUMENT_ROOT."/core/boxes/modules_boxes.php");
/**
* Class to manage the box to show RSS feeds
*/
class box_external_rss extends ModeleBoxes {
var $boxcode="lastrssinfos";

View File

@ -25,6 +25,9 @@
include_once(DOL_DOCUMENT_ROOT."/core/boxes/modules_boxes.php");
/**
* Class to manage the box to show last invoices
*/
class box_factures extends ModeleBoxes {
var $boxcode="lastcustomerbills";

View File

@ -25,6 +25,9 @@
include_once(DOL_DOCUMENT_ROOT."/core/boxes/modules_boxes.php");
/**
* Class to manage the box to show last supplier invoices
*/
class box_factures_fourn extends ModeleBoxes {
var $boxcode="lastsupplierbills";

View File

@ -24,6 +24,9 @@
include_once(DOL_DOCUMENT_ROOT."/core/boxes/modules_boxes.php");
/**
* Class to manage the box to show not payed suppliers invoices
*/
class box_factures_fourn_imp extends ModeleBoxes {
var $boxcode="oldestunpaidsupplierbills";

View File

@ -27,6 +27,9 @@ require_once(DOL_DOCUMENT_ROOT."/core/boxes/modules_boxes.php");
require_once(DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php');
/**
* Class to manage the box to show last invoices
*/
class box_factures_imp extends ModeleBoxes {
var $boxcode="oldestunpaidcustomerbills";

View File

@ -25,6 +25,9 @@
include_once(DOL_DOCUMENT_ROOT."/core/boxes/modules_boxes.php");
/**
* Class to manage the box to show last suppliers
*/
class box_fournisseurs extends ModeleBoxes {
var $boxcode="lastsuppliers";

View File

@ -26,6 +26,9 @@
include_once(DOL_DOCUMENT_ROOT."/core/boxes/modules_boxes.php");
/**
* Class to manage the box to show last members
*/
class box_members extends ModeleBoxes {
var $boxcode="lastmembers";

View File

@ -25,6 +25,9 @@
include_once(DOL_DOCUMENT_ROOT."/core/boxes/modules_boxes.php");
/**
* Class to manage the box to show last customers of shop
*/
class box_osc_clients extends ModeleBoxes {
var $boxcode="nbofcustomers";

View File

@ -27,6 +27,9 @@ include_once(DOL_DOCUMENT_ROOT."/core/boxes/modules_boxes.php");
include_once(DOL_DOCUMENT_ROOT."/product/class/product.class.php");
/**
* Class to manage the box to show last products
*/
class box_produits extends ModeleBoxes {
var $boxcode="lastproducts";

View File

@ -26,6 +26,9 @@
include_once(DOL_DOCUMENT_ROOT."/core/boxes/modules_boxes.php");
/**
* Class to manage the box to show last proposals
*/
class box_propales extends ModeleBoxes {
var $boxcode="lastpropals";

View File

@ -28,6 +28,9 @@ include_once(DOL_DOCUMENT_ROOT."/core/boxes/modules_boxes.php");
include_once(DOL_DOCUMENT_ROOT."/comm/prospect/class/prospect.class.php");
/**
* Class to manage the box to show last prospects
*/
class box_prospect extends ModeleBoxes {
var $boxcode="lastprospects";

View File

@ -24,6 +24,9 @@
include_once(DOL_DOCUMENT_ROOT."/core/boxes/modules_boxes.php");
/**
* Class to manage the box to show expired services
*/
class box_services_expired extends ModeleBoxes {
var $boxcode="expiredservices";

View File

@ -26,6 +26,9 @@
include_once(DOL_DOCUMENT_ROOT."/core/boxes/modules_boxes.php");
/**
* Class to manage the box to show last services lines
*/
class box_services_vendus extends ModeleBoxes {
var $boxcode="lastproductsincontract";

View File

@ -24,8 +24,7 @@
/**
* \class ModeleBoxes
* \brief Classe mere des boites
* Parent class of boxes
*/
class ModeleBoxes // Can't be abtract as it is instanciated to build "empty" boxes
{