Ejemplo n.º 1
0
 function getTabNameForItem(CommonGLPI $item, $withtemplate = 0)
 {
     if ($item->getType() == 'Profile' && $item->getField('interface') != 'helpdesk') {
         return PluginImmobilizationsheetsConfig::getTypeName(2);
     }
     return '';
 }
Ejemplo n.º 2
0
(at your option) any later version.

Immobilizationsheets is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with Immobilizationsheets. If not, see <http://www.gnu.org/licenses/>.
--------------------------------------------------------------------------
*/
include '../../../inc/includes.php';
Session::checkRight("config", "w");
$plugin = new Plugin();
if ($plugin->isActivated("immobilizationsheets")) {
    $config = new PluginImmobilizationsheetsConfig();
    if (isset($_POST["update_config"])) {
        $config->update($_POST);
        Html::back();
    } else {
        Html::header(PluginImmobilizationsheetsConfig::getTypeName(2), '', "plugins", "immobilizationsheets");
        $config->GetFromDB(1);
        $config->showconfigform();
        Html::footer();
    }
} else {
    Html::header(__('Setup'), '', "config", "plugins");
    echo "<div class='center'><br><br>" . "<img src=\"" . $CFG_GLPI["root_doc"] . "/pics/warning.png\" alt='warning'><br><br>";
    echo "<b>" . __('Please activate the plugin', 'immobilizationsheets') . "</b></div>";
    Html::footer();
}