mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-06 01:28:19 +01:00
Standardize and update code
This commit is contained in:
@@ -54,8 +54,9 @@ class box_project extends ModeleBoxes
|
||||
function __construct($db,$param='')
|
||||
{
|
||||
global $user, $langs;
|
||||
$langs->load("boxes");
|
||||
$langs->load("projects");
|
||||
|
||||
// Load translation files required by the page
|
||||
$langs->loadLangs(array('boxes', 'projects'));
|
||||
|
||||
$this->db = $db;
|
||||
$this->boxlabel="Projects";
|
||||
|
||||
@@ -271,9 +271,8 @@ class FormMail extends Form
|
||||
|
||||
if (! is_object($form)) $form=new Form($this->db);
|
||||
|
||||
$langs->load("other");
|
||||
$langs->load("mails");
|
||||
|
||||
// Load translation files required by the page
|
||||
$langs->loadLangs(array('other', 'mails'));
|
||||
|
||||
// Clear temp files. Must be done at beginning, before call of triggers
|
||||
if (GETPOST('mode','alpha') == 'init' || (GETPOST('modelmailselected','alpha') && GETPOST('modelmailselected','alpha') != '-1'))
|
||||
|
||||
@@ -126,9 +126,8 @@ class FormTicket
|
||||
{
|
||||
global $conf, $langs, $user, $hookmanager;
|
||||
|
||||
$langs->load("other");
|
||||
$langs->load("mails");
|
||||
$langs->load("ticket");
|
||||
// Load translation files required by the page
|
||||
$langs->loadLangs(array('other', 'mails', 'ticket'));
|
||||
|
||||
$form = new Form($this->db);
|
||||
$formcompany = new FormCompany($this->db);
|
||||
|
||||
@@ -33,8 +33,8 @@ function categories_prepare_head($object,$type)
|
||||
{
|
||||
global $langs, $conf, $user;
|
||||
|
||||
$langs->load("categories");
|
||||
$langs->load("products");
|
||||
// Load translation files required by the page
|
||||
$langs->loadLangs(array('categories', 'products'));
|
||||
|
||||
$h = 0;
|
||||
$head = array();
|
||||
|
||||
@@ -195,8 +195,9 @@ function dol_print_file($langs,$filename,$searchalt=0)
|
||||
function dol_print_object_info($object, $usetable=0)
|
||||
{
|
||||
global $langs, $db;
|
||||
$langs->load("other");
|
||||
$langs->load("admin");
|
||||
|
||||
// Load translation files required by the page
|
||||
$langs->loadLangs(array('other', 'admin'));
|
||||
|
||||
include_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
|
||||
|
||||
|
||||
@@ -62,7 +62,6 @@ function payment_prepare_head(Paiement $object)
|
||||
*/
|
||||
function payment_supplier_prepare_head(Paiement $object)
|
||||
{
|
||||
|
||||
global $langs, $conf;
|
||||
|
||||
$h = 0;
|
||||
@@ -127,8 +126,9 @@ function showOnlinePaymentUrl($type,$ref)
|
||||
{
|
||||
global $conf, $langs;
|
||||
|
||||
$langs->load("payment");
|
||||
$langs->load("paybox");
|
||||
// Load translation files required by the page
|
||||
$langs->loadLangs(array('payment', 'paybox'));
|
||||
|
||||
$servicename='Online';
|
||||
|
||||
$out = img_picto('','object_globe.png').' '.$langs->trans("ToOfferALinkForOnlinePayment",$servicename).'<br>';
|
||||
|
||||
Reference in New Issue
Block a user