| Conditions | 3 |
| Paths | 2 |
| Total Lines | 381 |
| Code Lines | 105 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.
For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.
Commonly applied refactorings include:
If many parameters/temporary variables are present:
| 1 | <?php |
||
| 41 | public function __construct($db) |
||
| 42 | { |
||
| 43 | global $langs, $conf; |
||
| 44 | $this->db = $db; |
||
| 45 | |||
| 46 | // Id for module (must be unique). |
||
| 47 | // Use here a free id (See in Home -> System information -> Dolibarr for list of used modules id). |
||
| 48 | $this->numero = 500000; // TODO Go on page https://wiki.dolibarr.org/index.php/List_of_modules_id to reserve an id number for your module |
||
| 49 | // Key text used to identify module (for permissions, menus, etc...) |
||
| 50 | $this->rights_class = 'workstation'; |
||
| 51 | // Family can be 'base' (core modules),'crm','financial','hr','projects','products','ecm','technic' (transverse modules),'interface' (link with external tools),'other','...' |
||
| 52 | // It is used to group modules by family in module setup page |
||
| 53 | $this->family = "other"; |
||
| 54 | // Module position in the family on 2 digits ('01', '10', '20', ...) |
||
| 55 | $this->module_position = '90'; |
||
| 56 | // Gives the possibility for the module, to provide his own family info and position of this family (Overwrite $this->family and $this->module_position. Avoid this) |
||
| 57 | //$this->familyinfo = array('myownfamily' => array('position' => '01', 'label' => $langs->trans("MyOwnFamily"))); |
||
| 58 | // Module label (no space allowed), used if translation string 'ModuleWorkstationName' not found (Workstation is name of module). |
||
| 59 | $this->name = preg_replace('/^mod/i', '', get_class($this)); |
||
| 60 | // Module description, used if translation string 'ModuleWorkstationDesc' not found (Workstation is name of module). |
||
| 61 | $this->description = "WorkstationsDescription"; |
||
| 62 | // Used only if file README.md and README-LL.md not found. |
||
| 63 | $this->descriptionlong = "WorkstationsDescription"; |
||
| 64 | // Possible values for version are: 'development', 'experimental', 'dolibarr', 'dolibarr_deprecated' or a version string like 'x.y.z' |
||
| 65 | $this->version = 'development'; |
||
| 66 | // Url to the file with your last numberversion of this module |
||
| 67 | //$this->url_last_version = 'http://www.example.com/versionmodule.txt'; |
||
| 68 | |||
| 69 | // Key used in llx_const table to save module status enabled/disabled (where WORKSTATION is value of property name of module in uppercase) |
||
| 70 | $this->const_name = 'MAIN_MODULE_'.strtoupper($this->name); |
||
| 71 | // Name of image file used for this module. |
||
| 72 | // If file is in theme/yourtheme/img directory under name object_pictovalue.png, use this->picto='pictovalue' |
||
| 73 | // If file is in module/img directory under name object_pictovalue.png, use this->picto='pictovalue@module' |
||
| 74 | $this->picto = 'mrp'; |
||
| 75 | // Define some features supported by module (triggers, login, substitutions, menus, css, etc...) |
||
| 76 | $this->module_parts = array( |
||
| 77 | // Set this to 1 if module has its own trigger directory (core/triggers) |
||
| 78 | 'triggers' => 0, |
||
| 79 | // Set this to 1 if module has its own login method file (core/login) |
||
| 80 | 'login' => 0, |
||
| 81 | // Set this to 1 if module has its own substitution function file (core/substitutions) |
||
| 82 | 'substitutions' => 0, |
||
| 83 | // Set this to 1 if module has its own menus handler directory (core/menus) |
||
| 84 | 'menus' => 0, |
||
| 85 | // Set this to 1 if module overwrite template dir (core/tpl) |
||
| 86 | 'tpl' => 0, |
||
| 87 | // Set this to 1 if module has its own barcode directory (core/modules/barcode) |
||
| 88 | 'barcode' => 0, |
||
| 89 | // Set this to 1 if module has its own models directory (core/modules/xxx) |
||
| 90 | 'models' => 1, |
||
| 91 | // Set this to 1 if module has its own printing directory (core/modules/printing) |
||
| 92 | 'printing' => 0, |
||
| 93 | // Set this to 1 if module has its own theme directory (theme) |
||
| 94 | 'theme' => 0, |
||
| 95 | // Set this to relative path of css file if module has its own css file |
||
| 96 | 'css' => array( |
||
| 97 | // '/workstation/css/workstation.css.php', |
||
| 98 | ), |
||
| 99 | // Set this to relative path of js file if module must load a js on all pages |
||
| 100 | 'js' => array( |
||
| 101 | // '/workstation/js/workstation.js.php', |
||
| 102 | ), |
||
| 103 | // Set here all hooks context managed by module. To find available hook context, make a "grep -r '>initHooks(' *" on source code. You can also set hook context to 'all' |
||
| 104 | 'hooks' => array( |
||
| 105 | // 'data' => array( |
||
| 106 | // 'hookcontext1', |
||
| 107 | // 'hookcontext2', |
||
| 108 | // ), |
||
| 109 | // 'entity' => '0', |
||
| 110 | ), |
||
| 111 | // Set this to 1 if features of module are opened to external users |
||
| 112 | 'moduleforexternal' => 0, |
||
| 113 | ); |
||
| 114 | // Data directories to create when module is enabled. |
||
| 115 | // Example: this->dirs = array("/workstation/temp","/workstation/subdir"); |
||
| 116 | $this->dirs = array("/workstation/temp"); |
||
| 117 | // Config pages. Put here list of php page, stored into workstation/admin directory, to use to setup module. |
||
| 118 | $this->config_page_url = array("workstation.php"); |
||
| 119 | // Dependencies |
||
| 120 | // A condition to hide module |
||
| 121 | $this->hidden = false; |
||
| 122 | // List of module class names as string that must be enabled if this module is enabled. Example: array('always1'=>'modModuleToEnable1','always2'=>'modModuleToEnable2', 'FR1'=>'modModuleToEnableFR'...) |
||
| 123 | $this->depends = array(); |
||
| 124 | $this->requiredby = array(); // List of module class names as string to disable if this one is disabled. Example: array('modModuleToDisable1', ...) |
||
| 125 | $this->conflictwith = array(); // List of module class names as string this module is in conflict with. Example: array('modModuleToDisable1', ...) |
||
| 126 | $this->langfiles = array("mrp"); |
||
| 127 | $this->phpmin = array(5, 5); // Minimum version of PHP required by module |
||
| 128 | $this->need_dolibarr_version = array(11, -3); // Minimum version of Dolibarr required by module |
||
| 129 | $this->warnings_activation = array(); // Warning to show when we activate module. array('always'='text') or array('FR'='textfr','ES'='textes'...) |
||
| 130 | $this->warnings_activation_ext = array(); // Warning to show when we activate an external module. array('always'='text') or array('FR'='textfr','ES'='textes'...) |
||
| 131 | //$this->automatic_activation = array('FR'=>'WorkstationWasAutomaticallyActivatedBecauseOfYourCountryChoice'); |
||
| 132 | //$this->always_enabled = true; // If true, can't be disabled |
||
| 133 | |||
| 134 | // Constants |
||
| 135 | // List of particular constants to add when module is enabled (key, 'chaine', value, desc, visible, 'current' or 'allentities', deleteonunactive) |
||
| 136 | // Example: $this->const=array(1 => array('WORKSTATION_MYNEWCONST1', 'chaine', 'myvalue', 'This is a constant to add', 1), |
||
| 137 | // 2 => array('WORKSTATION_MYNEWCONST2', 'chaine', 'myvalue', 'This is another constant to add', 0, 'current', 1) |
||
| 138 | // ); |
||
| 139 | $this->const = array(); |
||
| 140 | |||
| 141 | // Some keys to add into the overwriting translation tables |
||
| 142 | /*$this->overwrite_translation = array( |
||
| 143 | 'en_US:ParentCompany'=>'Parent company or reseller', |
||
| 144 | 'fr_FR:ParentCompany'=>'Maison mère ou revendeur' |
||
| 145 | )*/ |
||
| 146 | |||
| 147 | if (!isset($conf->workstation) || !isset($conf->workstation->enabled)) { |
||
| 148 | $conf->workstation = new stdClass(); |
||
| 149 | $conf->workstation->enabled = 0; |
||
| 150 | } |
||
| 151 | |||
| 152 | // Array to add new pages in new tabs |
||
| 153 | $this->tabs = array(); |
||
| 154 | // Example: |
||
| 155 | // $this->tabs[] = array('data'=>'objecttype:+tabname1:Title1:mylangfile@workstation:$user->rights->workstation->read:/workstation/mynewtab1.php?id=__ID__'); // To add a new tab identified by code tabname1 |
||
| 156 | // $this->tabs[] = array('data'=>'objecttype:+tabname2:SUBSTITUTION_Title2:mylangfile@workstation:$user->rights->othermodule->read:/workstation/mynewtab2.php?id=__ID__', // To add another new tab identified by code tabname2. Label will be result of calling all substitution functions on 'Title2' key. |
||
| 157 | // $this->tabs[] = array('data'=>'objecttype:-tabname:NU:conditiontoremove'); // To remove an existing tab identified by code tabname |
||
| 158 | // |
||
| 159 | // Where objecttype can be |
||
| 160 | // 'categories_x' to add a tab in category view (replace 'x' by type of category (0=product, 1=supplier, 2=customer, 3=member) |
||
| 161 | // 'contact' to add a tab in contact view |
||
| 162 | // 'contract' to add a tab in contract view |
||
| 163 | // 'group' to add a tab in group view |
||
| 164 | // 'intervention' to add a tab in intervention view |
||
| 165 | // 'invoice' to add a tab in customer invoice view |
||
| 166 | // 'invoice_supplier' to add a tab in supplier invoice view |
||
| 167 | // 'member' to add a tab in fundation member view |
||
| 168 | // 'opensurveypoll' to add a tab in opensurvey poll view |
||
| 169 | // 'order' to add a tab in customer order view |
||
| 170 | // 'order_supplier' to add a tab in supplier order view |
||
| 171 | // 'payment' to add a tab in payment view |
||
| 172 | // 'payment_supplier' to add a tab in supplier payment view |
||
| 173 | // 'product' to add a tab in product view |
||
| 174 | // 'propal' to add a tab in propal view |
||
| 175 | // 'project' to add a tab in project view |
||
| 176 | // 'stock' to add a tab in stock view |
||
| 177 | // 'thirdparty' to add a tab in third party view |
||
| 178 | // 'user' to add a tab in user view |
||
| 179 | |||
| 180 | // Dictionaries |
||
| 181 | $this->dictionaries = array(); |
||
| 182 | /* Example: |
||
| 183 | $this->dictionaries=array( |
||
| 184 | 'langs'=>'workstation@workstation', |
||
| 185 | // List of tables we want to see into dictonnary editor |
||
| 186 | 'tabname'=>array(MAIN_DB_PREFIX."table1", MAIN_DB_PREFIX."table2", MAIN_DB_PREFIX."table3"), |
||
| 187 | // Label of tables |
||
| 188 | 'tablib'=>array("Table1", "Table2", "Table3"), |
||
| 189 | // Request to select fields |
||
| 190 | 'tabsql'=>array('SELECT f.rowid as rowid, f.code, f.label, f.active FROM '.MAIN_DB_PREFIX.'table1 as f', 'SELECT f.rowid as rowid, f.code, f.label, f.active FROM '.MAIN_DB_PREFIX.'table2 as f', 'SELECT f.rowid as rowid, f.code, f.label, f.active FROM '.MAIN_DB_PREFIX.'table3 as f'), |
||
| 191 | // Sort order |
||
| 192 | 'tabsqlsort'=>array("label ASC", "label ASC", "label ASC"), |
||
| 193 | // List of fields (result of select to show dictionary) |
||
| 194 | 'tabfield'=>array("code,label", "code,label", "code,label"), |
||
| 195 | // List of fields (list of fields to edit a record) |
||
| 196 | 'tabfieldvalue'=>array("code,label", "code,label", "code,label"), |
||
| 197 | // List of fields (list of fields for insert) |
||
| 198 | 'tabfieldinsert'=>array("code,label", "code,label", "code,label"), |
||
| 199 | // Name of columns with primary key (try to always name it 'rowid') |
||
| 200 | 'tabrowid'=>array("rowid", "rowid", "rowid"), |
||
| 201 | // Condition to show each dictionary |
||
| 202 | 'tabcond'=>array($conf->workstation->enabled, $conf->workstation->enabled, $conf->workstation->enabled) |
||
| 203 | ); |
||
| 204 | */ |
||
| 205 | |||
| 206 | // Boxes/Widgets |
||
| 207 | // Add here list of php file(s) stored in workstation/core/boxes that contains a class to show a widget. |
||
| 208 | $this->boxes = array( |
||
| 209 | // 0 => array( |
||
| 210 | // 'file' => 'workstationwidget1.php@workstation', |
||
| 211 | // 'note' => 'Widget provided by Workstation', |
||
| 212 | // 'enabledbydefaulton' => 'Home', |
||
| 213 | // ), |
||
| 214 | // ... |
||
| 215 | ); |
||
| 216 | |||
| 217 | // Cronjobs (List of cron jobs entries to add when module is enabled) |
||
| 218 | // unit_frequency must be 60 for minute, 3600 for hour, 86400 for day, 604800 for week |
||
| 219 | $this->cronjobs = array( |
||
| 220 | // 0 => array( |
||
| 221 | // 'label' => 'MyJob label', |
||
| 222 | // 'jobtype' => 'method', |
||
| 223 | // 'class' => '/workstation/class/workstation.class.php', |
||
| 224 | // 'objectname' => 'Workstation', |
||
| 225 | // 'method' => 'doScheduledJob', |
||
| 226 | // 'parameters' => '', |
||
| 227 | // 'comment' => 'Comment', |
||
| 228 | // 'frequency' => 2, |
||
| 229 | // 'unitfrequency' => 3600, |
||
| 230 | // 'status' => 0, |
||
| 231 | // 'test' => '$conf->workstation->enabled', |
||
| 232 | // 'priority' => 50, |
||
| 233 | // ), |
||
| 234 | ); |
||
| 235 | // Example: $this->cronjobs=array( |
||
| 236 | // 0=>array('label'=>'My label', 'jobtype'=>'method', 'class'=>'/dir/class/file.class.php', 'objectname'=>'MyClass', 'method'=>'myMethod', 'parameters'=>'param1, param2', 'comment'=>'Comment', 'frequency'=>2, 'unitfrequency'=>3600, 'status'=>0, 'test'=>'$conf->workstation->enabled', 'priority'=>50), |
||
| 237 | // 1=>array('label'=>'My label', 'jobtype'=>'command', 'command'=>'', 'parameters'=>'param1, param2', 'comment'=>'Comment', 'frequency'=>1, 'unitfrequency'=>3600*24, 'status'=>0, 'test'=>'$conf->workstation->enabled', 'priority'=>50) |
||
| 238 | // ); |
||
| 239 | |||
| 240 | // Permissions provided by this module |
||
| 241 | $this->rights = array(); |
||
| 242 | $r = 0; |
||
| 243 | // Add here entries to declare new permissions |
||
| 244 | /* BEGIN MODULEBUILDER PERMISSIONS */ |
||
| 245 | $this->rights[$r][0] = $this->numero + $r; // Permission id (must not be already used) |
||
| 246 | $this->rights[$r][1] = 'Read objects of Workstation'; // Permission label |
||
| 247 | $this->rights[$r][4] = 'workstation'; // In php code, permission will be checked by test if ($user->rights->workstation->level1->level2) |
||
| 248 | $this->rights[$r][5] = 'read'; // In php code, permission will be checked by test if ($user->rights->workstation->level1->level2) |
||
| 249 | $r++; |
||
| 250 | $this->rights[$r][0] = $this->numero + $r; // Permission id (must not be already used) |
||
| 251 | $this->rights[$r][1] = 'Create/Update objects of Workstation'; // Permission label |
||
| 252 | $this->rights[$r][4] = 'workstation'; // In php code, permission will be checked by test if ($user->rights->workstation->level1->level2) |
||
| 253 | $this->rights[$r][5] = 'write'; // In php code, permission will be checked by test if ($user->rights->workstation->level1->level2) |
||
| 254 | $r++; |
||
| 255 | $this->rights[$r][0] = $this->numero + $r; // Permission id (must not be already used) |
||
| 256 | $this->rights[$r][1] = 'Delete objects of Workstation'; // Permission label |
||
| 257 | $this->rights[$r][4] = 'workstation'; // In php code, permission will be checked by test if ($user->rights->workstation->level1->level2) |
||
| 258 | $this->rights[$r][5] = 'delete'; // In php code, permission will be checked by test if ($user->rights->workstation->level1->level2) |
||
| 259 | $r++; |
||
| 260 | /* END MODULEBUILDER PERMISSIONS */ |
||
| 261 | |||
| 262 | // Main menu entries to add |
||
| 263 | $this->menu = array(); |
||
| 264 | $r = 0; |
||
| 265 | // Add here entries to declare new menus |
||
| 266 | /* BEGIN MODULEBUILDER TOPMENU */ |
||
| 267 | /*$this->menu[$r++] = array( |
||
| 268 | 'fk_menu'=>'', // '' if this is a top menu. For left menu, use 'fk_mainmenu=xxx' or 'fk_mainmenu=xxx,fk_leftmenu=yyy' where xxx is mainmenucode and yyy is a leftmenucode |
||
| 269 | 'type'=>'top', // This is a Top menu entry |
||
| 270 | 'titre'=>$langs->trans('GPAO'), |
||
| 271 | 'mainmenu'=>'gpao', |
||
| 272 | 'leftmenu'=>'', |
||
| 273 | 'url'=>'/workstation/workstationindex.php', |
||
| 274 | 'langs'=>'workstation@workstation', // Lang file to use (without .lang) by module. File must be in langs/code_CODE/ directory. |
||
| 275 | 'position'=>1000 + $r, |
||
| 276 | 'enabled'=>'$conf->workstation->enabled', // Define condition to show or hide menu entry. Use '$conf->workstation->enabled' if entry must be visible if module is enabled. |
||
| 277 | 'perms'=>'1', // Use 'perms'=>'$user->rights->workstation->workstation->read' if you want your menu with a permission rules |
||
| 278 | 'target'=>'', |
||
| 279 | 'user'=>2, // 0=Menu for internal users, 1=external users, 2=both |
||
| 280 | );*/ |
||
| 281 | /* END MODULEBUILDER TOPMENU */ |
||
| 282 | /* BEGIN MODULEBUILDER LEFTMENU WORKSTATION |
||
| 283 | $this->menu[$r++]=array( |
||
| 284 | 'fk_menu'=>'fk_mainmenu=workstation', // '' if this is a top menu. For left menu, use 'fk_mainmenu=xxx' or 'fk_mainmenu=xxx,fk_leftmenu=yyy' where xxx is mainmenucode and yyy is a leftmenucode |
||
| 285 | 'type'=>'left', // This is a Top menu entry |
||
| 286 | 'titre'=>'Workstation', |
||
| 287 | 'mainmenu'=>'workstation', |
||
| 288 | 'leftmenu'=>'workstation', |
||
| 289 | 'url'=>'/workstation/workstationindex.php', |
||
| 290 | 'langs'=>'workstation@workstation', // Lang file to use (without .lang) by module. File must be in langs/code_CODE/ directory. |
||
| 291 | 'position'=>1000+$r, |
||
| 292 | 'enabled'=>'$conf->workstation->enabled', // Define condition to show or hide menu entry. Use '$conf->workstation->enabled' if entry must be visible if module is enabled. |
||
| 293 | 'perms'=>'$user->rights->workstation->workstation->read', // Use 'perms'=>'$user->rights->workstation->level1->level2' if you want your menu with a permission rules |
||
| 294 | 'target'=>'', |
||
| 295 | 'user'=>2, // 0=Menu for internal users, 1=external users, 2=both |
||
| 296 | ); |
||
| 297 | $this->menu[$r++]=array( |
||
| 298 | 'fk_menu'=>'fk_mainmenu=workstation,fk_leftmenu=workstation', // '' if this is a top menu. For left menu, use 'fk_mainmenu=xxx' or 'fk_mainmenu=xxx,fk_leftmenu=yyy' where xxx is mainmenucode and yyy is a leftmenucode |
||
| 299 | 'type'=>'left', // This is a Left menu entry |
||
| 300 | 'titre'=>'List_Workstation', |
||
| 301 | 'mainmenu'=>'workstation', |
||
| 302 | 'leftmenu'=>'workstation_workstation_list', |
||
| 303 | 'url'=>'/workstation/workstation_list.php', |
||
| 304 | 'langs'=>'workstation@workstation', // Lang file to use (without .lang) by module. File must be in langs/code_CODE/ directory. |
||
| 305 | 'position'=>1000+$r, |
||
| 306 | 'enabled'=>'$conf->workstation->enabled', // Define condition to show or hide menu entry. Use '$conf->workstation->enabled' if entry must be visible if module is enabled. Use '$leftmenu==\'system\'' to show if leftmenu system is selected. |
||
| 307 | 'perms'=>'$user->rights->workstation->workstation->read', // Use 'perms'=>'$user->rights->workstation->level1->level2' if you want your menu with a permission rules |
||
| 308 | 'target'=>'', |
||
| 309 | 'user'=>2, // 0=Menu for internal users, 1=external users, 2=both |
||
| 310 | ); |
||
| 311 | $this->menu[$r++]=array( |
||
| 312 | 'fk_menu'=>'fk_mainmenu=workstation,fk_leftmenu=workstation', // '' if this is a top menu. For left menu, use 'fk_mainmenu=xxx' or 'fk_mainmenu=xxx,fk_leftmenu=yyy' where xxx is mainmenucode and yyy is a leftmenucode |
||
| 313 | 'type'=>'left', // This is a Left menu entry |
||
| 314 | 'titre'=>'New_Workstation', |
||
| 315 | 'mainmenu'=>'workstation', |
||
| 316 | 'leftmenu'=>'workstation_workstation_new', |
||
| 317 | 'url'=>'/workstation/workstation_card.php?action=create', |
||
| 318 | 'langs'=>'workstation@workstation', // Lang file to use (without .lang) by module. File must be in langs/code_CODE/ directory. |
||
| 319 | 'position'=>1000+$r, |
||
| 320 | 'enabled'=>'$conf->workstation->enabled', // Define condition to show or hide menu entry. Use '$conf->workstation->enabled' if entry must be visible if module is enabled. Use '$leftmenu==\'system\'' to show if leftmenu system is selected. |
||
| 321 | 'perms'=>'$user->rights->workstation->workstation->write', // Use 'perms'=>'$user->rights->workstation->level1->level2' if you want your menu with a permission rules |
||
| 322 | 'target'=>'', |
||
| 323 | 'user'=>2, // 0=Menu for internal users, 1=external users, 2=both |
||
| 324 | ); |
||
| 325 | */ |
||
| 326 | |||
| 327 | $this->menu[$r++]=array( |
||
| 328 | // '' if this is a top menu. For left menu, use 'fk_mainmenu=xxx' or 'fk_mainmenu=xxx,fk_leftmenu=yyy' where xxx is mainmenucode and yyy is a leftmenucode |
||
| 329 | 'fk_menu'=>'fk_mainmenu=mrp', |
||
| 330 | // This is a Left menu entry |
||
| 331 | 'type'=>'left', |
||
| 332 | 'titre'=>$langs->trans('Workstations'), |
||
| 333 | 'mainmenu'=>'mrp', |
||
| 334 | 'leftmenu'=>'workstation_workstation', |
||
| 335 | 'url'=>'', |
||
| 336 | // Lang file to use (without .lang) by module. File must be in langs/code_CODE/ directory. |
||
| 337 | 'langs'=>'mrp', |
||
| 338 | 'position'=>1100+$r, |
||
| 339 | // Define condition to show or hide menu entry. Use '$conf->workstation->enabled' if entry must be visible if module is enabled. Use '$leftmenu==\'system\'' to show if leftmenu system is selected. |
||
| 340 | 'enabled'=>'$conf->workstation->enabled', |
||
| 341 | // Use 'perms'=>'$user->rights->workstation->level1->level2' if you want your menu with a permission rules |
||
| 342 | 'perms'=>'$user->rights->workstation->workstation->read', |
||
| 343 | 'target'=>'', |
||
| 344 | // 0=Menu for internal users, 1=external users, 2=both |
||
| 345 | 'user'=>2, |
||
| 346 | ); |
||
| 347 | $this->menu[$r++]=array( |
||
| 348 | // '' if this is a top menu. For left menu, use 'fk_mainmenu=xxx' or 'fk_mainmenu=xxx,fk_leftmenu=yyy' where xxx is mainmenucode and yyy is a leftmenucode |
||
| 349 | 'fk_menu'=>'fk_mainmenu=mrp,fk_leftmenu=workstation_workstation', |
||
| 350 | // This is a Left menu entry |
||
| 351 | 'type'=>'left', |
||
| 352 | 'titre'=>$langs->trans('WorkstationCreate'), |
||
| 353 | 'mainmenu'=>'mrp', |
||
| 354 | 'leftmenu'=>'workstation_workstation_left_create', |
||
| 355 | 'url'=>'/workstation/workstation_card.php?action=create', |
||
| 356 | // Lang file to use (without .lang) by module. File must be in langs/code_CODE/ directory. |
||
| 357 | 'langs'=>'mrp', |
||
| 358 | 'position'=>1100+$r, |
||
| 359 | // Define condition to show or hide menu entry. Use '$conf->workstation->enabled' if entry must be visible if module is enabled. Use '$leftmenu==\'system\'' to show if leftmenu system is selected. |
||
| 360 | 'enabled'=>'$conf->workstation->enabled', |
||
| 361 | // Use 'perms'=>'$user->rights->workstation->level1->level2' if you want your menu with a permission rules |
||
| 362 | 'perms'=>'$user->rights->workstation->workstation->write', |
||
| 363 | 'target'=>'', |
||
| 364 | // 0=Menu for internal users, 1=external users, 2=both |
||
| 365 | 'user'=>2 |
||
| 366 | ); |
||
| 367 | $this->menu[$r++]=array( |
||
| 368 | // '' if this is a top menu. For left menu, use 'fk_mainmenu=xxx' or 'fk_mainmenu=xxx,fk_leftmenu=yyy' where xxx is mainmenucode and yyy is a leftmenucode |
||
| 369 | 'fk_menu'=>'fk_mainmenu=mrp,fk_leftmenu=workstation_workstation', |
||
| 370 | // This is a Left menu entry |
||
| 371 | 'type'=>'left', |
||
| 372 | 'titre'=>$langs->trans('List'), |
||
| 373 | 'mainmenu'=>'mrp', |
||
| 374 | 'leftmenu'=>'workstation_workstation_left_list', |
||
| 375 | 'url'=>'/workstation/workstation_list.php', |
||
| 376 | // Lang file to use (without .lang) by module. File must be in langs/code_CODE/ directory. |
||
| 377 | 'langs'=>'mrp', |
||
| 378 | 'position'=>1101+$r, |
||
| 379 | // Define condition to show or hide menu entry. Use '$conf->workstation->enabled' if entry must be visible if module is enabled. Use '$leftmenu==\'system\'' to show if leftmenu system is selected. |
||
| 380 | 'enabled'=>'$conf->workstation->enabled', |
||
| 381 | // Use 'perms'=>'$user->rights->workstation->level1->level2' if you want your menu with a permission rules |
||
| 382 | 'perms'=>'$user->rights->workstation->workstation->read', |
||
| 383 | 'target'=>'', |
||
| 384 | // 0=Menu for internal users, 1=external users, 2=both |
||
| 385 | 'user'=>2 |
||
| 386 | ); |
||
| 387 | |||
| 388 | /* END MODULEBUILDER LEFTMENU WORKSTATION */ |
||
| 389 | // Exports profiles provided by this module |
||
| 390 | $r = 1; |
||
| 391 | /* BEGIN MODULEBUILDER EXPORT WORKSTATION */ |
||
| 392 | /* |
||
| 393 | $langs->load("workstation@workstation"); |
||
| 394 | $this->export_code[$r]=$this->rights_class.'_'.$r; |
||
| 395 | $this->export_label[$r]='WorkstationLines'; // Translation key (used only if key ExportDataset_xxx_z not found) |
||
| 396 | $this->export_icon[$r]='workstation@workstation'; |
||
| 397 | // Define $this->export_fields_array, $this->export_TypeFields_array and $this->export_entities_array |
||
| 398 | $keyforclass = 'Workstation'; $keyforclassfile='/workstation/class/workstation.class.php'; $keyforelement='workstation@workstation'; |
||
| 399 | include DOL_DOCUMENT_ROOT.'/core/commonfieldsinexport.inc.php'; |
||
| 400 | //$this->export_fields_array[$r]['t.fieldtoadd']='FieldToAdd'; $this->export_TypeFields_array[$r]['t.fieldtoadd']='Text'; |
||
| 401 | //unset($this->export_fields_array[$r]['t.fieldtoremove']); |
||
| 402 | //$keyforclass = 'WorkstationLine'; $keyforclassfile='/workstation/class/workstation.class.php'; $keyforelement='workstationline@workstation'; $keyforalias='tl'; |
||
| 403 | //include DOL_DOCUMENT_ROOT.'/core/commonfieldsinexport.inc.php'; |
||
| 404 | $keyforselect='workstation'; $keyforaliasextra='extra'; $keyforelement='workstation@workstation'; |
||
| 405 | include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php'; |
||
| 406 | //$keyforselect='workstationline'; $keyforaliasextra='extraline'; $keyforelement='workstationline@workstation'; |
||
| 407 | //include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php'; |
||
| 408 | //$this->export_dependencies_array[$r] = array('workstationline'=>array('tl.rowid','tl.ref')); // To force to activate one or several fields if we select some fields that need same (like to select a unique key if we ask a field of a child to avoid the DISTINCT to discard them, or for computed field than need several other fields) |
||
| 409 | //$this->export_special_array[$r] = array('t.field'=>'...'); |
||
| 410 | //$this->export_examplevalues_array[$r] = array('t.field'=>'Example'); |
||
| 411 | //$this->export_help_array[$r] = array('t.field'=>'FieldDescHelp'); |
||
| 412 | $this->export_sql_start[$r]='SELECT DISTINCT '; |
||
| 413 | $this->export_sql_end[$r] =' FROM '.MAIN_DB_PREFIX.'workstation as t'; |
||
| 414 | //$this->export_sql_end[$r] =' LEFT JOIN '.MAIN_DB_PREFIX.'workstation_line as tl ON tl.fk_workstation = t.rowid'; |
||
| 415 | $this->export_sql_end[$r] .=' WHERE 1 = 1'; |
||
| 416 | $this->export_sql_end[$r] .=' AND t.entity IN ('.getEntity('workstation').')'; |
||
| 417 | $r++; */ |
||
| 418 | /* END MODULEBUILDER EXPORT WORKSTATION */ |
||
| 419 | |||
| 420 | // Imports profiles provided by this module |
||
| 421 | $r = 1; |
||
| 422 | /* BEGIN MODULEBUILDER IMPORT WORKSTATION */ |
||
| 521 |