Skip to content

Commit

Permalink
Mark resource module as experimental / need Dolibarr 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jfefe committed May 10, 2014
1 parent 71c44d8 commit e63f8b8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions htdocs/core/modules/modResource.class.php
@@ -1,6 +1,6 @@
<?php
/* Module to manage resources into Dolibarr ERP/CRM
* Copyright (C) 2013 Jean-François Ferry <jfefe@aternatik.fr>
* Copyright (C) 2013-2014 Jean-François Ferry <jfefe@aternatik.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
Expand Down Expand Up @@ -61,7 +61,7 @@ public function __construct($db)
// (where XXX is value of numeric property 'numero' of module)
$this->description = "Description of module Resource";
// Possible values for version are: 'development', 'experimental' or version
$this->version = '0.1';
$this->version = 'experimental';
// Key used in llx_const table to save module status enabled/disabled
// (where MYMODULE is value of property name of module in uppercase)
$this->const_name = 'MAIN_MODULE_' . strtoupper($this->name);
Expand Down Expand Up @@ -101,7 +101,7 @@ public function __construct($db)

// Data directories to create when module is enabled.
// Example: this->dirs = array("/resource/temp");
$this->dirs = array("/resource");
//$this->dirs = array("/resource");

// Config pages. Put here list of php pages
// stored into resource/admin directory, used to setup module.
Expand All @@ -115,7 +115,7 @@ public function __construct($db)
// Minimum version of PHP required by module
$this->phpmin = array(5, 3);
// Minimum version of Dolibarr required by module
$this->need_dolibarr_version = array(3, 4);
$this->need_dolibarr_version = array(3, 5);
$this->langfiles = array("resource@resource"); // langfiles@resource
// Constants
// List of particular constants to add when module is enabled
Expand Down

0 comments on commit e63f8b8

Please sign in to comment.