Ganteng Doang Upload Shell Gak Bisa


Linux server.jmdstrack.com 3.10.0-1160.119.1.el7.tuxcare.els10.x86_64 #1 SMP Fri Oct 11 21:40:41 UTC 2024 x86_64
/ home/ jmdstrac/ public_html/ devices/ src/ Plugin/

/home/jmdstrac/public_html/devices/src/Plugin/Hooks.php

<?php

/**
 * ---------------------------------------------------------------------
 *
 * GLPI - Gestionnaire Libre de Parc Informatique
 *
 * http://glpi-project.org
 *
 * @copyright 2015-2023 Teclib' and contributors.
 * @copyright 2003-2014 by the INDEPNET Development Team.
 * @licence   https://www.gnu.org/licenses/gpl-3.0.html
 *
 * ---------------------------------------------------------------------
 *
 * LICENSE
 *
 * This file is part of GLPI.
 *
 * 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
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program 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 this program.  If not, see <https://www.gnu.org/licenses/>.
 *
 * ---------------------------------------------------------------------
 */

namespace Glpi\Plugin;

class Hooks
{
   // Boolean hooks
    const CSRF_COMPLIANT = 'csrf_compliant';

   // File hooks
    const ADD_CSS        = 'add_css';
    const ADD_JAVASCRIPT = 'add_javascript';

   // Function hooks with no parameters
    const CHANGE_ENTITY               = 'change_entity';
    const CHANGE_PROFILE              = 'change_profile';
    const DISPLAY_LOGIN               = 'display_login';
    const DISPLAY_CENTRAL             = 'display_central';
    const DISPLAY_NETPORT_LIST_BEFORE = 'display_netport_list_before';
    const INIT_SESSION                = 'init_session';
    const POST_INIT                   = 'post_init';

   // Specific function hooks with parameters
    const RULE_MATCHED          = 'rule_matched';
    const VCARD_DATA            = 'vcard_data';
    const POST_PLUGIN_DISABLE   = 'post_plugin_disable';
    const POST_PLUGIN_CLEAN     = 'post_plugin_clean';
    const POST_PLUGIN_UNINSTALL = 'post_plugin_uninstall';
    const POST_PLUGIN_ENABLE    = 'post_plugin_enable' ;

   // Function hooks with parameters and output
    const DISPLAY_LOCKED_FIELDS         = 'display_locked_fields';
    const MIGRATE_TYPES                 = 'migratetypes';
    const POST_KANBAN_CONTENT           = 'post_kanban_content';
    const PRE_KANBAN_CONTENT            = 'pre_kanban_content';
    const KANBAN_ITEM_METADATA          = 'kanban_item_metadata';
    const KANBAN_FILTERS                = 'kanban_filters';
    const REDEFINE_MENUS                = 'redefine_menus';
    const RETRIEVE_MORE_DATA_FROM_LDAP  = 'retrieve_more_data_from_ldap';
    const RETRIEVE_MORE_FIELD_FROM_LDAP = 'retrieve_more_field_from_ldap';
    const RESTRICT_LDAP_AUTH            = 'restrict_ldap_auth';
    const UNLOCK_FIELDS                 = 'unlock_fields';
    const UNDISCLOSED_CONFIG_VALUE      = 'undiscloseConfigValue';
    const FILTER_ACTORS                 = 'filter_actors';

   // Item hooks expecting an 'item' parameter
    const ADD_RECIPIENT_TO_TARGET   = 'add_recipient_to_target';
    const AUTOINVENTORY_INFORMATION = 'autoinventory_information';
    const INFOCOM                   = 'infocom';
    const ITEM_ACTION_TARGETS       = 'item_action_targets';
    const ITEM_ADD                  = 'item_add';
    const ITEM_ADD_TARGETS          = 'item_add_targets';
    const ITEM_CAN                  = 'item_can';
    const ITEM_EMPTY                = 'item_empty';
    const ITEM_DELETE               = 'item_delete';
    const ITEM_GET_DATA             = 'item_get_datas';
    const ITEM_GET_EVENTS           = 'item_get_events';
    const ITEM_UPDATE               = 'item_update';
    const ITEM_PURGE                = 'item_purge';
    const ITEM_RESTORE              = 'item_restore';
    const POST_PREPAREADD           = 'post_prepareadd';
    const PRE_ITEM_ADD              = 'pre_item_add';
    const PRE_ITEM_UPDATE           = 'pre_item_update';
    const PRE_ITEM_DELETE           = 'pre_item_delete';
    const PRE_ITEM_PURGE            = 'pre_item_purge';
    const PRE_ITEM_RESTORE          = 'pre_item_restore';
    const SHOW_ITEM_STATS           = 'show_item_stats';

   // Item hooks expecting an array parameter (available keys: item, options)
    const ITEM_TRANSFER           = 'item_transfer';
    const POST_ITEM_FORM          = 'post_item_form';
    const POST_SHOW_ITEM          = 'post_show_item';
    const POST_SHOW_TAB           = 'post_show_tab';
    const PRE_ITEM_FORM           = 'pre_item_form';
    const PRE_SHOW_ITEM           = 'pre_show_item';
    const PRE_SHOW_TAB            = 'pre_show_tab';
    const TIMELINE_ACTIONS        = 'timeline_actions';  // (keys: item, rand)
    const TIMELINE_ANSWER_ACTIONS = 'timeline_answer_actions';  // (keys: item)
    const SHOW_IN_TIMELINE        = 'show_in_timeline';  // (keys: item)

   // Security hooks (data to encypt)
    const SECURED_FIELDS  = 'secured_fields';
    const SECURED_CONFIGS = 'secured_configs';

   // Inventory hooks
    const PROLOG_RESPONSE = 'prolog_response';
    const NETWORK_DISCOVERY = 'network_discovery';
    const NETWORK_INVENTORY = 'network_inventory';
    const INVENTORY_GET_PARAMS = 'inventory_get_params';

   // Agent contact request related hooks
    const HANDLE_INVENTORY_TASK    = 'handle_inventory_task';
    const HANDLE_NETDISCOVERY_TASK = 'handle_netdiscovery_task';
    const HANDLE_NETINVENTORY_TASK = 'handle_netinventory_task';
    const HANDLE_ESX_TASK          = 'handle_esx_task';
    const HANDLE_COLLECT_TASK      = 'handle_collect_task';
    const HANDLE_DEPLOY_TASK       = 'handle_deploy_task';
    const HANDLE_WAKEONLAN_TASK    = 'handle_wakeonlan_task';
    const HANDLE_REMOTEINV_TASK    = 'handle_remoteinventory_task';

    const STALE_AGENT_CONFIG = 'stale_agent_config';

    // Debug / Development hooks
    const DEBUG_TABS = 'debug_tabs';

    // Helpdesk Menu Hooks
    const HELPDESK_MENU_ENTRY = 'helpdesk_menu_entry';
    const HELPDESK_MENU_ENTRY_ICON = 'helpdesk_menu_entry_icon';

    // Dashboard hooks
    const DASHBOARD_CARDS   = 'dashboard_cards';
    const DASHBOARD_FILTERS = 'dashboard_filters';
    const DASHBOARD_TYPES   = 'dashboard_types';

    /**
     * Get file hooks
     *
     * @return array
     */
    public static function getFileHooks(): array
    {
        return [
            self::ADD_CSS,
            self::ADD_JAVASCRIPT,
        ];
    }

    /**
     * Get functionals hooks
     *
     * @return array
     */
    public static function getFunctionalHooks(): array
    {
        return [
            self::CHANGE_ENTITY,
            self::CHANGE_PROFILE,
            self::DISPLAY_LOCKED_FIELDS,
            self::DISPLAY_LOGIN,
            self::DISPLAY_CENTRAL,
            self::INIT_SESSION,
            self::MIGRATE_TYPES,
            self::POST_KANBAN_CONTENT,
            self::PRE_KANBAN_CONTENT,
            self::POST_INIT,
            self::RETRIEVE_MORE_DATA_FROM_LDAP,
            self::RETRIEVE_MORE_FIELD_FROM_LDAP,
            self::RESTRICT_LDAP_AUTH,
            self::RULE_MATCHED,
            self::UNDISCLOSED_CONFIG_VALUE,
            self::UNLOCK_FIELDS,
            self::VCARD_DATA,
        ];
    }

    /**
     * Get items hooks
     *
     * @return array
     */
    public static function getItemHooks(): array
    {
        return [
            self::ADD_RECIPIENT_TO_TARGET,
            self::ITEM_ACTION_TARGETS,
            self::ITEM_ADD,
            self::ITEM_ADD_TARGETS,
            self::ITEM_CAN,
            self::ITEM_EMPTY,
            self::ITEM_DELETE,
            self::ITEM_GET_DATA,
            self::ITEM_GET_EVENTS,
            self::ITEM_UPDATE,
            self::ITEM_PURGE,
            self::ITEM_RESTORE,
            self::ITEM_TRANSFER,
            self::PRE_ITEM_ADD,
            self::PRE_ITEM_UPDATE,
            self::PRE_ITEM_DELETE,
            self::PRE_ITEM_FORM,
            self::PRE_ITEM_PURGE,
            self::PRE_ITEM_RESTORE,
            self::PRE_SHOW_ITEM,
            self::PRE_SHOW_TAB,
            self::POST_ITEM_FORM,
            self::POST_SHOW_ITEM,
            self::POST_SHOW_TAB,
            self::POST_PREPAREADD,
            self::SHOW_ITEM_STATS,
            self::TIMELINE_ACTIONS,
        ];
    }
}
			
			


Thanks For 0xGh05T - DSRF14 - Mr.Dan07 - Leri01 - FxshX7 - AlkaExploiter - xLoveSyndrome'z - Acep Gans'z

JMDS TRACK – Just Another Diagnostics Lab Site

Home

JMDS TRACK Cameroon

Boost the productivity of your mobile ressources


Make An Appointment


Fleet management

  1. Reduce the operting cost and the unavailability of your vehicles
  2. reduce the fuel consumption of your fleet
  3. Improve the driving dehavior and safety of your drivers
  4. optimize the utilization rate of your equipment 
  5. protect your vehicle against theft
  6. Improve the quality of your customer service


Find out more

Assets management

  1. Track the roaming of your equipment
  2. Optimise the management of your assets on site and during transport
  3. Secure the transport of your goods
  4. Make your team responsible for preventing the loss of tools, equipment
  5. Take a real-time inventory of your equipment on site
  6. Easily find your mobile objects or equipment



Find out more



Find out more

Antitheft solutions

  1. Secure your vehicles and machinery and increase your chances of recovering them in the event of theft
  2. Protect your assets and reduce the costs associated with their loss
  3. Combine immobiliser and driver identification and limit the risk of theft
  4. Identify fuel theft and reduce costs
  5. Protect your goods and take no more risks
  6. Be alerted to abnormal events

Our Location

 Douala BP cité 

     and

Yaoundé Total Essos


Make An Appointment


Get Directions

682230363/ 677481892

What makes us different from others

  • young and dynamic team
  • call center 24/24 7/7
  • roaming throughout Africa
  • team of developers who can develop customer-specific solutions
  • diversity of services
  • reactive and prompt after-sales service when soliciting a customer or a malfunction
  • Free Maintenance and installation in the cities of Douala and Yaounde

https://youtu.be/xI1cz_Jh2x8

15+
years of experience in GPS system development, production and deployment.

15 Collaborators

More than 15 employees dedicated to the research and development of new applications and to customer care

5 000 Vehicles and mobile assets

5 000 vehicles and mobile assets under management, in Africa

Our Partners










Latest Case Studies

Our current projects 

5/5
Bon SAV , SATISFAIT DU TRAITEMENT DES REQUETES

M DIPITA CHRISTIAN
Logistic Safety Manager Road Safety Manager
5/5
La réactivité de JMDS est excellente
Nous restons satisfait dans l’ensemble des prestations relatives a la couverture de notre parc automobile

Hervé Frédéric NDENGUE
Chef Service Adjoint de la Sécurité Générale (CNPS)
5/5
L’APPLICATION EMIXIS est convivial A L’utilisation
BEIG-3 SARL
DIRECTOR GENERAL
5/5
Nevertheless I am delighted with the service
MR. BISSE BENJAMIN
CUSTOMER

Subsribe To Our Newsletter

Stay in touch with us to get latest news and special offers.



Address JMDS TRACK

Douala bp cité



and

YAOUNDE Total Essos

Call Us

+237682230363



Email Us


info@jmdstrack.cm