Sindbad~EG File Manager
<?php
/**
* ---------------------------------------------------------------------
*
* GLPI - Gestionnaire Libre de Parc Informatique
*
* http://glpi-project.org
*
* @copyright 2015-2022 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/>.
*
* ---------------------------------------------------------------------
*/
use Glpi\Socket;
use Glpi\Toolbox\Sanitizer;
// Use anonymous class so we can have constants that define special values without polluting the global table
// and adding unnecessary variables to IDE autocomplete data that may result in errors
$empty_data_builder = new class
{
/** @var int Self-service profile ID */
const PROFILE_SELF_SERVICE = 1;
/** @var int Observer profile ID */
const PROFILE_OBSERVER = 2;
/** @var int Admin profile ID */
const PROFILE_ADMIN = 3;
/** @var int Super-admin profile ID */
const PROFILE_SUPER_ADMIN = 4;
/** @var int Hotliner profile ID */
const PROFILE_HOTLINER = 5;
/** @var int Technician profile ID */
const PROFILE_TECHNICIAN = 6;
/** @var int Supervisor profile ID */
const PROFILE_SUPERVISOR = 7;
/** @var int Read-only profile ID */
const PROFILE_READ_ONLY = 8;
const USER_GLPI = 2;
const USER_POST_ONLY = 3;
const USER_TECH = 4;
const USER_NORMAL = 5;
const USER_SYSTEM = 6;
/** @var int Value indicating no rights */
const RIGHT_NONE = 0;
public function getEmptyData(): array
{
$tables = [];
$tables['glpi_apiclients'] = [
[
'id' => 1,
'entities_id' => 0,
'is_recursive' => 1,
'name' => 'full access from localhost',
'is_active' => 1,
'ipv4_range_start' => "2130706433", //value from MySQL INET_ATON('127.0.0.1')
'ipv4_range_end' => "2130706433", //value from MySQL INET_ATON('127.0.0.1')
'ipv6' => '::1',
],
];
foreach (Blacklist::getDefaults() as $type => $values) {
foreach ($values as $value) {
$tables['glpi_blacklists'][] = [
'type' => $type,
'name' => $value['name'],
'value' => $value['value'],
];
}
}
$tables['glpi_calendars'] = [
[
'id' => 1,
'name' => 'Default',
'entities_id' => 0,
'is_recursive' => 1,
'comment' => 'Default calendar',
'cache_duration' => '[0,43200,43200,43200,43200,43200,0]',
],
];
$tables['glpi_calendarsegments'] = [];
for ($i = 1; $i < 6; ++$i) {
$tables['glpi_calendarsegments'][] = [
'id' => $i,
'calendars_id' => 1,
'entities_id' => 0,
'is_recursive' => 0,
'day' => $i,
'begin' => '08:00:00',
'end' => '20:00:00',
];
}
$default_prefs = [
'version' => 'FILLED AT INSTALL',
'show_jobs_at_login' => '0',
'cut' => '250',
'list_limit' => '15',
'list_limit_max' => '50',
'url_maxlength' => '30',
'event_loglevel' => '5',
'notifications_mailing' => '0',
'admin_email' => 'admsys@localhost',
'admin_email_name' => '',
'from_email' => '',
'from_email_name' => '',
'noreply_email' => '',
'noreply_email_name' => '',
'replyto_email' => '',
'replyto_email_name' => '',
'mailing_signature' => 'SIGNATURE',
'use_anonymous_helpdesk' => '0',
'use_anonymous_followups' => '0',
'language' => 'en_GB',
'priority_1' => '#fff2f2',
'priority_2' => '#ffe0e0',
'priority_3' => '#ffcece',
'priority_4' => '#ffbfbf',
'priority_5' => '#ffadad',
'priority_6' => '#ff5555',
'date_tax' => '2005-12-31',
'cas_host' => '',
'cas_port' => '443',
'cas_uri' => '',
'cas_logout' => '',
'existing_auth_server_field_clean_domain' => '0',
'planning_begin' => '08:00:00',
'planning_end' => '20:00:00',
'utf8_conv' => '1',
'use_public_faq' => '0',
'url_base' => 'http://localhost/glpi',
'show_link_in_mail' => '0',
'text_login' => '',
'founded_new_version' => '',
'dropdown_max' => '100',
'ajax_wildcard' => '*',
'ajax_limit_count' => '10',
'is_users_auto_add' => '1',
'date_format' => '0',
'number_format' => '0',
'csv_delimiter' => ';',
'is_ids_visible' => '0',
'smtp_mode' => '0',
'smtp_host' => '',
'smtp_port' => '25',
'smtp_username' => '',
'proxy_name' => '',
'proxy_port' => '8080',
'proxy_user' => '',
'add_followup_on_update_ticket' => '1',
'keep_tickets_on_delete' => '0',
'time_step' => '5',
'decimal_number' => '2',
'helpdesk_doc_url' => '',
'central_doc_url' => '',
'documentcategories_id_forticket' => '0',
'monitors_management_restrict' => Config::NO_MANAGEMENT,
'phones_management_restrict' => Config::NO_MANAGEMENT,
'peripherals_management_restrict' => Config::NO_MANAGEMENT,
'printers_management_restrict' => Config::NO_MANAGEMENT,
'use_log_in_files' => '1',
'time_offset' => '0',
'is_contact_autoupdate' => '1',
'is_user_autoupdate' => '1',
'is_group_autoupdate' => '1',
'is_location_autoupdate' => '1',
'state_autoupdate_mode' => '0',
'is_contact_autoclean' => '0',
'is_user_autoclean' => '0',
'is_group_autoclean' => '0',
'is_location_autoclean' => '0',
'state_autoclean_mode' => '0',
'use_flat_dropdowntree' => '0',
'use_autoname_by_entity' => '1',
'softwarecategories_id_ondelete' => '1',
'x509_email_field' => '',
'x509_cn_restrict' => '',
'x509_o_restrict' => '',
'x509_ou_restrict' => '',
'default_mailcollector_filesize_max' => '2097152',
'followup_private' => '0',
'task_private' => '0',
'default_software_helpdesk_visible' => '1',
'names_format' => '0',
'default_requesttypes_id' => '1',
'use_noright_users_add' => '1',
'cron_limit' => '5',
'priority_matrix' => '{"1":{"1":1,"2":1,"3":2,"4":2,"5":2},"2":{"1":1,"2":2,"3":2,"4":3,"5":3},"3":{"1":2,"2":2,"3":3,"4":4,"5":4},"4":{"1":2,"2":3,"3":4,"4":4,"5":5},"5":{"1":2,"2":3,"3":4,"4":5,"5":5}}',
'urgency_mask' => '62',
'impact_mask' => '62',
'user_deleted_ldap' => '0',
'user_restored_ldap' => '0',
'auto_create_infocoms' => '0',
'use_slave_for_search' => '0',
'proxy_passwd' => '',
'smtp_passwd' => '',
'show_count_on_tabs' => '1',
'refresh_views' => '0',
'set_default_tech' => '1',
'allow_search_view' => '2',
'allow_search_all' => '0',
'allow_search_global' => '1',
'display_count_on_home' => '5',
'use_password_security' => '0',
'password_min_length' => '8',
'password_need_number' => '1',
'password_need_letter' => '1',
'password_need_caps' => '1',
'password_need_symbol' => '1',
'use_check_pref' => '0',
'notification_to_myself' => '1',
'duedateok_color' => '#06ff00',
'duedatewarning_color' => '#ffb800',
'duedatecritical_color' => '#ff0000',
'duedatewarning_less' => '20',
'duedatecritical_less' => '5',
'duedatewarning_unit' => '%',
'duedatecritical_unit' => '%',
'realname_ssofield' => '',
'firstname_ssofield' => '',
'email1_ssofield' => '',
'email2_ssofield' => '',
'email3_ssofield' => '',
'email4_ssofield' => '',
'phone_ssofield' => '',
'phone2_ssofield' => '',
'mobile_ssofield' => '',
'comment_ssofield' => '',
'title_ssofield' => '',
'category_ssofield' => '',
'language_ssofield' => '',
'entity_ssofield' => '',
'registration_number_ssofield' => '',
'ssovariables_id' => '0',
'ssologout_url' => '',
'translate_kb' => '0',
'translate_dropdowns' => '0',
'translate_reminders' => '0',
'pdffont' => 'helvetica',
'keep_devices_when_purging_item' => '0',
'maintenance_mode' => '0',
'maintenance_text' => '',
'attach_ticket_documents_to_mail' => '0',
'backcreated' => '0',
'task_state' => '1',
'palette' => 'auror',
'page_layout' => 'vertical',
'fold_menu' => '0',
'fold_search' => '0',
'savedsearches_pinned' => '0',
'timeline_order' => 'natural',
'itil_layout' => '',
'richtext_layout' => 'inline',
'lock_use_lock_item' => '0',
'lock_autolock_mode' => '1',
'lock_directunlock_notification' => '0',
'lock_item_list' => '[]',
'lock_lockprofile_id' => '8',
'set_default_requester' => '1',
'highcontrast_css' => '0',
'default_central_tab' => '0',
'smtp_check_certificate' => '1',
'enable_api' => '0',
'enable_api_login_credentials' => '0',
'enable_api_login_external_token' => '1',
'url_base_api' => 'http://localhost/glpi/api',
'login_remember_time' => '604800',
'login_remember_default' => '1',
'use_notifications' => '0',
'notifications_ajax' => '0',
'notifications_ajax_check_interval' => '5',
'notifications_ajax_sound' => null,
'notifications_ajax_icon_url' => '/pics/glpi.png',
'dbversion' => 'FILLED AT INSTALL',
'smtp_max_retries' => '5',
'smtp_sender' => null,
'from_email' => null,
'from_email_name' => null,
'instance_uuid' => null,
'registration_uuid' => null,
'smtp_retry_time' => '5',
'purge_addrelation' => '0',
'purge_deleterelation' => '0',
'purge_createitem' => '0',
'purge_deleteitem' => '0',
'purge_restoreitem' => '0',
'purge_updateitem' => '0',
'purge_item_software_install' => '0',
'purge_software_item_install' => '0',
'purge_software_version_install' => '0',
'purge_infocom_creation' => '0',
'purge_profile_user' => '0',
'purge_group_user' => '0',
'purge_adddevice' => '0',
'purge_updatedevice' => '0',
'purge_deletedevice' => '0',
'purge_connectdevice' => '0',
'purge_disconnectdevice' => '0',
'purge_userdeletedfromldap' => '0',
'purge_comments' => '0',
'purge_datemod' => '0',
'purge_all' => '0',
'purge_user_auth_changes' => '0',
'purge_plugins' => '0',
'purge_refusedequipment' => '0',
'display_login_source' => '1',
'devices_in_menu' => '["Item_DeviceSimcard"]',
'password_expiration_delay' => '-1',
'password_expiration_notice' => '-1',
'password_expiration_lock_delay' => '-1',
'default_dashboard_central' => 'central',
'default_dashboard_assets' => 'assets',
'default_dashboard_helpdesk' => 'assistance',
'default_dashboard_mini_ticket' => 'mini_tickets',
Impact::CONF_ENABLED => exportArrayToDB(Impact::getDefaultItemtypes()),
// Default size corresponds to the 'upload_max_filesize' directive in Mio (rounded down) or 1 Mio if 'upload_max_filesize' is too low.
'document_max_size' => max(1, floor(Toolbox::return_bytes_from_ini_vars(ini_get('upload_max_filesize')) / 1024 / 1024)),
'planning_work_days' => exportArrayToDB([0, 1, 2, 3, 4, 5, 6]),
'system_user' => 6,
'support_legacy_data' => 0, // New installation should not support legacy data
];
$tables['glpi_configs'] = [];
foreach ($default_prefs as $name => $value) {
$tables['glpi_configs'][] = [
'context' => 'core',
'name' => $name,
'value' => $value,
];
}
foreach (\Glpi\Inventory\Conf::$defaults as $name => $value) {
$tables['glpi_configs'][] = [
'context' => 'inventory',
'name' => $name,
'value' => $value,
];
}
$tables['glpi_crontasks'] = [
[
'id' => 2,
'itemtype' => 'CartridgeItem',
'name' => 'cartridge',
'frequency' => '86400',
'param' => 10,
'state' => CronTask::STATE_DISABLE,
'mode' => CronTask::MODE_INTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 3,
'itemtype' => 'ConsumableItem',
'name' => 'consumable',
'frequency' => '86400',
'param' => 10,
'state' => CronTask::STATE_DISABLE,
'mode' => CronTask::MODE_INTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 4,
'itemtype' => 'SoftwareLicense',
'name' => 'software',
'frequency' => '86400',
'param' => null,
'state' => CronTask::STATE_DISABLE,
'mode' => CronTask::MODE_INTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 5,
'itemtype' => 'Contract',
'name' => 'contract',
'frequency' => '86400',
'param' => null,
'state' => CronTask::STATE_WAITING,
'mode' => CronTask::MODE_INTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 6,
'itemtype' => 'Infocom',
'name' => 'infocom',
'frequency' => '86400',
'param' => null,
'state' => CronTask::STATE_WAITING,
'mode' => CronTask::MODE_INTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 7,
'itemtype' => 'CronTask',
'name' => 'logs',
'frequency' => '86400',
'param' => '30',
'state' => CronTask::STATE_DISABLE,
'mode' => CronTask::MODE_INTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 9,
'itemtype' => 'MailCollector',
'name' => 'mailgate',
'frequency' => '600',
'param' => '10',
'state' => CronTask::STATE_WAITING,
'mode' => CronTask::MODE_INTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 10,
'itemtype' => 'DBconnection',
'name' => 'checkdbreplicate',
'frequency' => '300',
'param' => null,
'state' => CronTask::STATE_DISABLE,
'mode' => CronTask::MODE_INTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 11,
'itemtype' => 'CronTask',
'name' => 'checkupdate',
'frequency' => '604800',
'param' => null,
'state' => CronTask::STATE_DISABLE,
'mode' => CronTask::MODE_INTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 12,
'itemtype' => 'CronTask',
'name' => 'session',
'frequency' => '86400',
'param' => null,
'state' => CronTask::STATE_WAITING,
'mode' => CronTask::MODE_INTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 13,
'itemtype' => 'CronTask',
'name' => 'graph',
'frequency' => 3600,
'param' => null,
'state' => CronTask::STATE_WAITING,
'mode' => CronTask::MODE_INTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 14,
'itemtype' => 'ReservationItem',
'name' => 'reservation',
'frequency' => 3600,
'param' => null,
'state' => CronTask::STATE_WAITING,
'mode' => CronTask::MODE_INTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 15,
'itemtype' => 'Ticket',
'name' => 'closeticket',
'frequency' => 43200,
'param' => null,
'state' => CronTask::STATE_WAITING,
'mode' => CronTask::MODE_INTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 16,
'itemtype' => 'Ticket',
'name' => 'alertnotclosed',
'frequency' => 43200,
'param' => null,
'state' => CronTask::STATE_WAITING,
'mode' => CronTask::MODE_INTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 17,
'itemtype' => 'SlaLevel_Ticket',
'name' => 'slaticket',
'frequency' => 300,
'param' => null,
'state' => CronTask::STATE_WAITING,
'mode' => CronTask::MODE_INTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 18,
'itemtype' => 'Ticket',
'name' => 'createinquest',
'frequency' => 86400,
'param' => null,
'state' => CronTask::STATE_WAITING,
'mode' => CronTask::MODE_INTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 19,
'itemtype' => 'CronTask',
'name' => 'watcher',
'frequency' => 86400,
'param' => null,
'state' => CronTask::STATE_WAITING,
'mode' => CronTask::MODE_INTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 20,
'itemtype' => 'CommonITILRecurrentCron',
'name' => 'RecurrentItems',
'frequency' => 3600,
'param' => null,
'state' => CronTask::STATE_WAITING,
'mode' => CronTask::MODE_INTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 21,
'itemtype' => 'PlanningRecall',
'name' => 'planningrecall',
'frequency' => 300,
'param' => null,
'state' => CronTask::STATE_WAITING,
'mode' => CronTask::MODE_INTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 22,
'itemtype' => 'QueuedNotification',
'name' => 'queuednotification',
'frequency' => 60,
'param' => 50,
'state' => CronTask::STATE_WAITING,
'mode' => CronTask::MODE_INTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 23,
'itemtype' => 'QueuedNotification',
'name' => 'queuednotificationclean',
'frequency' => 86400,
'param' => 30,
'state' => CronTask::STATE_WAITING,
'mode' => CronTask::MODE_INTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 24,
'itemtype' => 'CronTask',
'name' => 'temp',
'frequency' => 3600,
'param' => null,
'state' => CronTask::STATE_WAITING,
'mode' => CronTask::MODE_INTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 25,
'itemtype' => 'MailCollector',
'name' => 'mailgateerror',
'frequency' => 86400,
'param' => null,
'state' => CronTask::STATE_WAITING,
'mode' => CronTask::MODE_INTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 26,
'itemtype' => 'CronTask',
'name' => 'circularlogs',
'frequency' => 86400,
'param' => 4,
'state' => CronTask::STATE_DISABLE,
'mode' => CronTask::MODE_INTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 27,
'itemtype' => 'ObjectLock',
'name' => 'unlockobject',
'frequency' => 86400,
'param' => 4,
'state' => CronTask::STATE_DISABLE,
'mode' => CronTask::MODE_INTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 28,
'itemtype' => 'SavedSearch',
'name' => 'countAll',
'frequency' => 604800,
'param' => null,
'state' => CronTask::STATE_DISABLE,
'mode' => CronTask::MODE_INTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 29,
'itemtype' => 'SavedSearch_Alert',
'name' => 'savedsearchesalerts',
'frequency' => 86400,
'param' => null,
'state' => CronTask::STATE_DISABLE,
'mode' => CronTask::MODE_INTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 30,
'itemtype' => 'Telemetry',
'name' => 'telemetry',
'frequency' => 2592000,
'param' => null,
'state' => CronTask::STATE_DISABLE,
'mode' => CronTask::MODE_INTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 31,
'itemtype' => 'Certificate',
'name' => 'certificate',
'frequency' => 86400,
'param' => null,
'state' => CronTask::STATE_WAITING,
'mode' => CronTask::MODE_INTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 32,
'itemtype' => 'OlaLevel_Ticket',
'name' => 'olaticket',
'frequency' => 300,
'param' => null,
'state' => CronTask::STATE_WAITING,
'mode' => CronTask::MODE_INTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 33,
'itemtype' => 'PurgeLogs',
'name' => 'PurgeLogs',
'frequency' => 604800,
'param' => 24,
'state' => CronTask::STATE_WAITING,
'mode' => CronTask::MODE_EXTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 34,
'itemtype' => 'Ticket',
'name' => 'purgeticket',
'frequency' => 604800,
'param' => null,
'state' => CronTask::STATE_DISABLE,
'mode' => CronTask::MODE_EXTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 35,
'itemtype' => 'Document',
'name' => 'cleanorphans',
'frequency' => 604800,
'param' => null,
'state' => CronTask::STATE_DISABLE,
'mode' => CronTask::MODE_EXTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 36,
'itemtype' => 'User',
'name' => 'passwordexpiration',
'frequency' => 86400,
'param' => 100,
'state' => CronTask::STATE_DISABLE,
'mode' => CronTask::MODE_EXTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 37,
'itemtype' => 'Glpi\\Marketplace\\Controller',
'name' => 'checkAllUpdates',
'frequency' => 86400,
'param' => null,
'state' => CronTask::STATE_WAITING,
'mode' => CronTask::MODE_EXTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 38,
'itemtype' => CleanSoftwareCron::getType(),
'name' => CleanSoftwareCron::TASK_NAME,
'frequency' => MONTH_TIMESTAMP,
'param' => 1000,
'state' => CronTask::STATE_DISABLE,
'mode' => CronTask::MODE_EXTERNAL,
'lastrun' => null,
'logs_lifetime' => 300,
], [
'id' => 39,
'itemtype' => 'Domain',
'name' => 'DomainsAlert',
'frequency' => 86400,
'param' => null,
'state' => CronTask::STATE_WAITING,
'mode' => CronTask::MODE_EXTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 42,
'itemtype' => PendingReasonCron::getType(),
'name' => PendingReasonCron::TASK_NAME,
'frequency' => 30 * MINUTE_TIMESTAMP,
'param' => null,
'state' => CronTask::STATE_WAITING,
'mode' => CronTask::MODE_EXTERNAL,
'lastrun' => null,
'logs_lifetime' => 60,
], [
'id' => 40,
'itemtype' => 'Glpi\Inventory\Inventory',
'name' => 'cleantemp',
'frequency' => 86400,
'param' => null,
'state' => CronTask::STATE_DISABLE,
'mode' => CronTask::MODE_EXTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 41,
'itemtype' => 'Glpi\Inventory\Inventory',
'name' => 'cleanorphans',
'frequency' => 604800,
'param' => null,
'state' => CronTask::STATE_WAITING,
'mode' => CronTask::MODE_EXTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
], [
'id' => 43,
'itemtype' => 'Agent',
'name' => 'Cleanoldagents',
'frequency' => DAY_TIMESTAMP,
'param' => null,
'state' => CronTask::STATE_WAITING,
'mode' => CronTask::MODE_EXTERNAL,
'lastrun' => null,
'logs_lifetime' => 30,
],
];
$dashboards_data = include_once __DIR__ . "/migrations/update_9.4.x_to_9.5.0/dashboards.php";
$tables['glpi_dashboards_dashboards'] = [];
$tables['glpi_dashboards_items'] = [];
$i = $j = 1;
foreach ($dashboards_data as $default_dashboard) {
$items = $default_dashboard['_items'];
unset($default_dashboard['_items']);
$tables['glpi_dashboards_dashboards'][] = array_merge([
'id' => $i
], $default_dashboard);
foreach ($items as $item) {
$tables['glpi_dashboards_items'][] = array_merge([
'id' => $j,
'dashboards_dashboards_id' => $i,
], $item);
$j++;
}
$i++;
}
$tables['glpi_devicememorytypes'] = [
[
'id' => 1,
'name' => 'EDO',
],
[
'id' => 2,
'name' => 'DDR',
],
[
'id' => 3,
'name' => 'SDRAM',
],
[
'id' => 4,
'name' => 'SDRAM-2',
],
];
$tables['glpi_devicesimcardtypes'] = [
[
'id' => 1,
'name' => 'Full SIM',
],
[
'id' => 2,
'name' => 'Mini SIM',
],
[
'id' => 3,
'name' => 'Micro SIM',
],
[
'id' => 4,
'name' => 'Nano SIM',
],
];
$tables['glpi_displaypreferences'] = [
[
'itemtype' => 'Computer',
'num' => '4',
'rank' => '4',
], [
'itemtype' => 'Computer',
'num' => '45',
'rank' => '6',
], [
'itemtype' => 'Computer',
'num' => '40',
'rank' => '5',
], [
'itemtype' => 'Computer',
'num' => '5',
'rank' => '3',
], [
'itemtype' => 'Computer',
'num' => '23',
'rank' => '2',
], [
'itemtype' => 'DocumentType',
'num' => '3',
'rank' => '1',
], [
'itemtype' => 'Monitor',
'num' => '31',
'rank' => '1',
], [
'itemtype' => 'Monitor',
'num' => '23',
'rank' => '2',
], [
'itemtype' => 'Monitor',
'num' => '3',
'rank' => '3',
], [
'itemtype' => 'Monitor',
'num' => '4',
'rank' => '4',
], [
'itemtype' => 'Printer',
'num' => '31',
'rank' => '1',
], [
'itemtype' => 'NetworkEquipment',
'num' => '31',
'rank' => '1',
], [
'itemtype' => 'NetworkEquipment',
'num' => '23',
'rank' => '2',
], [
'itemtype' => 'Printer',
'num' => '23',
'rank' => '2',
], [
'itemtype' => 'Printer',
'num' => '3',
'rank' => '3',
], [
'itemtype' => 'Software',
'num' => '4',
'rank' => '3',
], [
'itemtype' => 'Software',
'num' => '5',
'rank' => '2',
], [
'itemtype' => 'Software',
'num' => '23',
'rank' => '1',
], [
'itemtype' => 'CartridgeItem',
'num' => '4',
'rank' => '2',
], [
'itemtype' => 'CartridgeItem',
'num' => '34',
'rank' => '1',
], [
'itemtype' => 'Peripheral',
'num' => '3',
'rank' => '3',
], [
'itemtype' => 'Peripheral',
'num' => '23',
'rank' => '2',
], [
'itemtype' => 'Peripheral',
'num' => '31',
'rank' => '1',
], [
'itemtype' => 'Computer',
'num' => '31',
'rank' => '1',
], [
'itemtype' => 'Computer',
'num' => '3',
'rank' => '7',
], [
'itemtype' => 'Computer',
'num' => '19',
'rank' => '8',
], [
'itemtype' => 'Computer',
'num' => '17',
'rank' => '9',
], [
'itemtype' => 'NetworkEquipment',
'num' => '3',
'rank' => '3',
], [
'itemtype' => 'NetworkEquipment',
'num' => '4',
'rank' => '4',
], [
'itemtype' => 'NetworkEquipment',
'num' => '11',
'rank' => '6',
], [
'itemtype' => 'NetworkEquipment',
'num' => '19',
'rank' => '7',
], [
'itemtype' => 'Printer',
'num' => '4',
'rank' => '4',
], [
'itemtype' => 'Printer',
'num' => '19',
'rank' => '6',
], [
'itemtype' => 'Monitor',
'num' => '19',
'rank' => '6',
], [
'itemtype' => 'Monitor',
'num' => '7',
'rank' => '7',
], [
'itemtype' => 'Peripheral',
'num' => '4',
'rank' => '4',
], [
'itemtype' => 'Peripheral',
'num' => '19',
'rank' => '6',
], [
'itemtype' => 'Peripheral',
'num' => '7',
'rank' => '7',
], [
'itemtype' => 'Contact',
'num' => '3',
'rank' => '1',
], [
'itemtype' => 'Contact',
'num' => '4',
'rank' => '2',
], [
'itemtype' => 'Contact',
'num' => '5',
'rank' => '3',
], [
'itemtype' => 'Contact',
'num' => '6',
'rank' => '4',
], [
'itemtype' => 'Contact',
'num' => '9',
'rank' => '5',
], [
'itemtype' => 'Supplier',
'num' => '9',
'rank' => '1',
], [
'itemtype' => 'Supplier',
'num' => '3',
'rank' => '2',
], [
'itemtype' => 'Supplier',
'num' => '4',
'rank' => '3',
], [
'itemtype' => 'Supplier',
'num' => '5',
'rank' => '4',
], [
'itemtype' => 'Supplier',
'num' => '10',
'rank' => '5',
], [
'itemtype' => 'Supplier',
'num' => '6',
'rank' => '6',
], [
'itemtype' => 'Contract',
'num' => '4',
'rank' => '1',
], [
'itemtype' => 'Contract',
'num' => '3',
'rank' => '2',
], [
'itemtype' => 'Contract',
'num' => '5',
'rank' => '3',
], [
'itemtype' => 'Contract',
'num' => '6',
'rank' => '4',
], [
'itemtype' => 'Contract',
'num' => '7',
'rank' => '5',
], [
'itemtype' => 'Contract',
'num' => '11',
'rank' => '6',
], [
'itemtype' => 'CartridgeItem',
'num' => '23',
'rank' => '3',
], [
'itemtype' => 'CartridgeItem',
'num' => '3',
'rank' => '4',
], [
'itemtype' => 'DocumentType',
'num' => '6',
'rank' => '2',
], [
'itemtype' => 'DocumentType',
'num' => '4',
'rank' => '3',
], [
'itemtype' => 'DocumentType',
'num' => '5',
'rank' => '4',
], [
'itemtype' => 'Document',
'num' => '3',
'rank' => '1',
], [
'itemtype' => 'Document',
'num' => '4',
'rank' => '2',
], [
'itemtype' => 'Document',
'num' => '7',
'rank' => '3',
], [
'itemtype' => 'Document',
'num' => '5',
'rank' => '4',
], [
'itemtype' => 'Document',
'num' => '16',
'rank' => '5',
], [
'itemtype' => 'User',
'num' => '34',
'rank' => '1',
], [
'itemtype' => 'User',
'num' => '5',
'rank' => '3',
], [
'itemtype' => 'User',
'num' => '6',
'rank' => '4',
], [
'itemtype' => 'User',
'num' => '3',
'rank' => '5',
], [
'itemtype' => 'ConsumableItem',
'num' => '34',
'rank' => '1',
], [
'itemtype' => 'ConsumableItem',
'num' => '4',
'rank' => '2',
], [
'itemtype' => 'ConsumableItem',
'num' => '23',
'rank' => '3',
], [
'itemtype' => 'ConsumableItem',
'num' => '3',
'rank' => '4',
], [
'itemtype' => 'NetworkEquipment',
'num' => '40',
'rank' => '5',
], [
'itemtype' => 'Printer',
'num' => '40',
'rank' => '5',
], [
'itemtype' => 'Monitor',
'num' => '40',
'rank' => '5',
], [
'itemtype' => 'Peripheral',
'num' => '40',
'rank' => '5',
], [
'itemtype' => 'User',
'num' => '8',
'rank' => '6',
], [
'itemtype' => 'Phone',
'num' => '31',
'rank' => '1',
], [
'itemtype' => 'Phone',
'num' => '23',
'rank' => '2',
], [
'itemtype' => 'Phone',
'num' => '3',
'rank' => '3',
], [
'itemtype' => 'Phone',
'num' => '4',
'rank' => '4',
], [
'itemtype' => 'Phone',
'num' => '40',
'rank' => '5',
], [
'itemtype' => 'Phone',
'num' => '19',
'rank' => '6',
], [
'itemtype' => 'Phone',
'num' => '7',
'rank' => '7',
], [
'itemtype' => 'Group',
'num' => '16',
'rank' => '1',
], [
'itemtype' => 'AllAssets',
'num' => '31',
'rank' => '1',
], [
'itemtype' => 'ReservationItem',
'num' => '4',
'rank' => '1',
], [
'itemtype' => 'ReservationItem',
'num' => '3',
'rank' => '2',
], [
'itemtype' => 'Budget',
'num' => '3',
'rank' => '2',
], [
'itemtype' => 'Software',
'num' => '72',
'rank' => '4',
], [
'itemtype' => 'Software',
'num' => '163',
'rank' => '5',
], [
'itemtype' => 'Budget',
'num' => '5',
'rank' => '1',
], [
'itemtype' => 'Budget',
'num' => '4',
'rank' => '3',
], [
'itemtype' => 'Budget',
'num' => '19',
'rank' => '4',
], [
'itemtype' => 'CronTask',
'num' => '8',
'rank' => '1',
], [
'itemtype' => 'CronTask',
'num' => '3',
'rank' => '2',
], [
'itemtype' => 'CronTask',
'num' => '4',
'rank' => '3',
], [
'itemtype' => 'CronTask',
'num' => '7',
'rank' => '4',
], [
'itemtype' => 'RequestType',
'num' => '14',
'rank' => '1',
], [
'itemtype' => 'RequestType',
'num' => '15',
'rank' => '2',
], [
'itemtype' => 'NotificationTemplate',
'num' => '4',
'rank' => '1',
], [
'itemtype' => 'NotificationTemplate',
'num' => '16',
'rank' => '2',
], [
'itemtype' => 'Notification',
'num' => '5',
'rank' => '1',
], [
'itemtype' => 'Notification',
'num' => '6',
'rank' => '2',
], [
'itemtype' => 'Notification',
'num' => '2',
'rank' => '3',
], [
'itemtype' => 'Notification',
'num' => '4',
'rank' => '4',
], [
'itemtype' => 'Notification',
'num' => '80',
'rank' => '5',
], [
'itemtype' => 'Notification',
'num' => '86',
'rank' => '6',
], [
'itemtype' => 'MailCollector',
'num' => '2',
'rank' => '1',
], [
'itemtype' => 'MailCollector',
'num' => '19',
'rank' => '2',
], [
'itemtype' => 'AuthLDAP',
'num' => '3',
'rank' => '1',
], [
'itemtype' => 'AuthLDAP',
'num' => '19',
'rank' => '2',
], [
'itemtype' => 'AuthMail',
'num' => '3',
'rank' => '1',
], [
'itemtype' => 'AuthMail',
'num' => '19',
'rank' => '2',
], [
'itemtype' => 'IPNetwork',
'num' => '18',
'rank' => '1',
], [
'itemtype' => 'WifiNetwork',
'num' => '10',
'rank' => '1',
], [
'itemtype' => 'Profile',
'num' => '2',
'rank' => '1',
], [
'itemtype' => 'Profile',
'num' => '3',
'rank' => '2',
], [
'itemtype' => 'Profile',
'num' => '19',
'rank' => '3',
], [
'itemtype' => 'Transfer',
'num' => '19',
'rank' => '1',
], [
'itemtype' => 'TicketValidation',
'num' => '3',
'rank' => '1',
], [
'itemtype' => 'TicketValidation',
'num' => '2',
'rank' => '2',
], [
'itemtype' => 'TicketValidation',
'num' => '8',
'rank' => '3',
], [
'itemtype' => 'TicketValidation',
'num' => '4',
'rank' => '4',
], [
'itemtype' => 'TicketValidation',
'num' => '9',
'rank' => '5',
], [
'itemtype' => 'TicketValidation',
'num' => '7',
'rank' => '6',
], [
'itemtype' => 'NotImportedEmail',
'num' => '2',
'rank' => '1',
], [
'itemtype' => 'NotImportedEmail',
'num' => '5',
'rank' => '2',
], [
'itemtype' => 'NotImportedEmail',
'num' => '4',
'rank' => '3',
], [
'itemtype' => 'NotImportedEmail',
'num' => '6',
'rank' => '4',
], [
'itemtype' => 'NotImportedEmail',
'num' => '16',
'rank' => '5',
], [
'itemtype' => 'NotImportedEmail',
'num' => '19',
'rank' => '6',
], [
'itemtype' => 'RuleRightParameter',
'num' => '11',
'rank' => '1',
], [
'itemtype' => 'Ticket',
'num' => '12',
'rank' => '1',
], [
'itemtype' => 'Ticket',
'num' => '19',
'rank' => '2',
], [
'itemtype' => 'Ticket',
'num' => '15',
'rank' => '3',
], [
'itemtype' => 'Ticket',
'num' => '3',
'rank' => '4',
], [
'itemtype' => 'Ticket',
'num' => '4',
'rank' => '5',
], [
'itemtype' => 'Ticket',
'num' => '5',
'rank' => '6',
], [
'itemtype' => 'Ticket',
'num' => '7',
'rank' => '7',
], [
'itemtype' => 'Calendar',
'num' => '19',
'rank' => '1',
], [
'itemtype' => 'Holiday',
'num' => '11',
'rank' => '1',
], [
'itemtype' => 'Holiday',
'num' => '12',
'rank' => '2',
], [
'itemtype' => 'Holiday',
'num' => '13',
'rank' => '3',
], [
'itemtype' => 'SLA',
'num' => '4',
'rank' => '1',
], [
'itemtype' => 'Ticket',
'num' => '18',
'rank' => '8',
], [
'itemtype' => 'AuthLDAP',
'num' => '30',
'rank' => '3',
], [
'itemtype' => 'AuthMail',
'num' => '6',
'rank' => '3',
], [
'itemtype' => 'FQDN',
'num' => '11',
'rank' => '1',
], [
'itemtype' => 'FieldUnicity',
'num' => '1',
'rank' => '1',
], [
'itemtype' => 'FieldUnicity',
'num' => '80',
'rank' => '2',
], [
'itemtype' => 'FieldUnicity',
'num' => '4',
'rank' => '3',
], [
'itemtype' => 'FieldUnicity',
'num' => '3',
'rank' => '4',
], [
'itemtype' => 'FieldUnicity',
'num' => '86',
'rank' => '5',
], [
'itemtype' => 'FieldUnicity',
'num' => '30',
'rank' => '6',
], [
'itemtype' => 'Problem',
'num' => '21',
'rank' => '1',
], [
'itemtype' => 'Problem',
'num' => '12',
'rank' => '2',
], [
'itemtype' => 'Problem',
'num' => '19',
'rank' => '3',
], [
'itemtype' => 'Problem',
'num' => '15',
'rank' => '4',
], [
'itemtype' => 'Problem',
'num' => '3',
'rank' => '5',
], [
'itemtype' => 'Problem',
'num' => '7',
'rank' => '6',
], [
'itemtype' => 'Problem',
'num' => '18',
'rank' => '7',
], [
'itemtype' => 'Vlan',
'num' => '11',
'rank' => '1',
], [
'itemtype' => 'TicketRecurrent',
'num' => '11',
'rank' => '1',
], [
'itemtype' => 'TicketRecurrent',
'num' => '12',
'rank' => '2',
], [
'itemtype' => 'TicketRecurrent',
'num' => '13',
'rank' => '3',
], [
'itemtype' => 'TicketRecurrent',
'num' => '15',
'rank' => '4',
], [
'itemtype' => 'TicketRecurrent',
'num' => '14',
'rank' => '5',
], [
'itemtype' => 'Reminder',
'num' => '2',
'rank' => '1',
], [
'itemtype' => 'Reminder',
'num' => '3',
'rank' => '2',
], [
'itemtype' => 'Reminder',
'num' => '4',
'rank' => '3',
], [
'itemtype' => 'Reminder',
'num' => '5',
'rank' => '4',
], [
'itemtype' => 'Reminder',
'num' => '6',
'rank' => '5',
], [
'itemtype' => 'Reminder',
'num' => '7',
'rank' => '6',
], [
'itemtype' => 'IPNetwork',
'num' => '10',
'rank' => '2',
], [
'itemtype' => 'IPNetwork',
'num' => '11',
'rank' => '3',
], [
'itemtype' => 'IPNetwork',
'num' => '12',
'rank' => '4',
], [
'itemtype' => 'IPNetwork',
'num' => '17',
'rank' => '5',
], [
'itemtype' => 'NetworkName',
'num' => '12',
'rank' => '1',
], [
'itemtype' => 'NetworkName',
'num' => '13',
'rank' => '2',
], [
'itemtype' => 'RSSFeed',
'num' => '2',
'rank' => '1',
], [
'itemtype' => 'RSSFeed',
'num' => '4',
'rank' => '2',
], [
'itemtype' => 'RSSFeed',
'num' => '5',
'rank' => '3',
], [
'itemtype' => 'RSSFeed',
'num' => '19',
'rank' => '4',
], [
'itemtype' => 'RSSFeed',
'num' => '6',
'rank' => '5',
], [
'itemtype' => 'RSSFeed',
'num' => '7',
'rank' => '6',
], [
'itemtype' => 'Blacklist',
'num' => '12',
'rank' => '1',
], [
'itemtype' => 'Blacklist',
'num' => '11',
'rank' => '2',
], [
'itemtype' => 'ReservationItem',
'num' => '5',
'rank' => '3',
], [
'itemtype' => 'QueueMail',
'num' => '16',
'rank' => '1',
], [
'itemtype' => 'QueueMail',
'num' => '7',
'rank' => '2',
], [
'itemtype' => 'QueueMail',
'num' => '20',
'rank' => '3',
], [
'itemtype' => 'QueueMail',
'num' => '21',
'rank' => '4',
], [
'itemtype' => 'QueueMail',
'num' => '22',
'rank' => '5',
], [
'itemtype' => 'QueueMail',
'num' => '15',
'rank' => '6',
], [
'itemtype' => 'Change',
'num' => '12',
'rank' => '1',
], [
'itemtype' => 'Change',
'num' => '19',
'rank' => '2',
], [
'itemtype' => 'Change',
'num' => '15',
'rank' => '3',
], [
'itemtype' => 'Change',
'num' => '7',
'rank' => '4',
], [
'itemtype' => 'Change',
'num' => '18',
'rank' => '5',
], [
'itemtype' => 'Project',
'num' => '3',
'rank' => '1',
], [
'itemtype' => 'Project',
'num' => '4',
'rank' => '2',
], [
'itemtype' => 'Project',
'num' => '12',
'rank' => '3',
], [
'itemtype' => 'Project',
'num' => '5',
'rank' => '4',
], [
'itemtype' => 'Project',
'num' => '15',
'rank' => '5',
], [
'itemtype' => 'Project',
'num' => '21',
'rank' => '6',
], [
'itemtype' => 'ProjectState',
'num' => '12',
'rank' => '1',
], [
'itemtype' => 'ProjectState',
'num' => '11',
'rank' => '2',
], [
'itemtype' => 'ProjectTask',
'num' => '2',
'rank' => '1',
], [
'itemtype' => 'ProjectTask',
'num' => '12',
'rank' => '2',
], [
'itemtype' => 'ProjectTask',
'num' => '14',
'rank' => '3',
], [
'itemtype' => 'ProjectTask',
'num' => '5',
'rank' => '4',
], [
'itemtype' => 'ProjectTask',
'num' => '7',
'rank' => '5',
], [
'itemtype' => 'ProjectTask',
'num' => '8',
'rank' => '6',
], [
'itemtype' => 'ProjectTask',
'num' => '13',
'rank' => '7',
], [
'itemtype' => 'CartridgeItem',
'num' => '9',
'rank' => '5',
], [
'itemtype' => 'ConsumableItem',
'num' => '9',
'rank' => '5',
], [
'itemtype' => 'ReservationItem',
'num' => '9',
'rank' => '4',
], [
'itemtype' => 'SoftwareLicense',
'num' => '1',
'rank' => '1',
], [
'itemtype' => 'SoftwareLicense',
'num' => '3',
'rank' => '2',
], [
'itemtype' => 'SoftwareLicense',
'num' => '10',
'rank' => '3',
], [
'itemtype' => 'SoftwareLicense',
'num' => '162',
'rank' => '4',
], [
'itemtype' => 'SoftwareLicense',
'num' => '5',
'rank' => '5',
], [
'itemtype' => 'SavedSearch',
'num' => '8',
'rank' => '1',
], [
'itemtype' => 'SavedSearch',
'num' => '9',
'rank' => '1',
], [
'itemtype' => 'SavedSearch',
'num' => '3',
'rank' => '1',
], [
'itemtype' => 'SavedSearch',
'num' => '10',
'rank' => '1',
], [
'itemtype' => 'SavedSearch',
'num' => '11',
'rank' => '1',
], [
'itemtype' => 'Plugin',
'num' => '2',
'rank' => '1',
], [
'itemtype' => 'Plugin',
'num' => '3',
'rank' => '2',
], [
'itemtype' => 'Plugin',
'num' => '4',
'rank' => '3',
], [
'itemtype' => 'Plugin',
'num' => '5',
'rank' => '4',
], [
'itemtype' => 'Plugin',
'num' => '6',
'rank' => '5',
], [
'itemtype' => 'Plugin',
'num' => '7',
'rank' => '6',
], [
'itemtype' => 'Plugin',
'num' => '8',
'rank' => '7',
]
];
$ADDTODISPLAYPREF['Cluster'] = [31, 19];
$ADDTODISPLAYPREF['Domain'] = [3, 4, 2, 6, 7];
$ADDTODISPLAYPREF['DomainRecord'] = [2, 3];
$ADDTODISPLAYPREF['Appliance'] = [2, 3, 4, 5];
$ADDTODISPLAYPREF['Lockedfield'] = [3, 13, 5];
$ADDTODISPLAYPREF['Unmanaged'] = [2, 4, 3, 5, 7, 10, 18, 14, 15, 9];
$ADDTODISPLAYPREF['NetworkPortType'] = [10, 11, 12];
$ADDTODISPLAYPREF['NetworkPort'] = [3, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40];
$ADDTODISPLAYPREF['USBVendor'] = [10, 11];
$ADDTODISPLAYPREF['PCIVendor'] = [10, 11];
$ADDTODISPLAYPREF['Agent'] = [2, 4, 10, 8, 11, 6, 15];
$ADDTODISPLAYPREF['Database'] = [2, 3, 6, 9, 10];
$ADDTODISPLAYPREF[Socket::class] = [5, 6, 9, 8, 7];
$ADDTODISPLAYPREF['Cable'] = [4, 31, 6, 15, 24, 8, 10, 13, 14];
foreach ($ADDTODISPLAYPREF as $type => $options) {
$rank = 1;
foreach ($options as $newval) {
$tables['glpi_displaypreferences'][] = [
'itemtype' => $type,
'num' => $newval,
'rank' => $rank++,
];
}
}
$tables['glpi_documenttypes'] = [
[
'id' => 1,
'name' => 'JPEG',
'ext' => 'jpg',
'icon' => 'jpg-dist.png',
], [
'id' => 2,
'name' => 'PNG',
'ext' => 'png',
'icon' => 'png-dist.png',
], [
'id' => 3,
'name' => 'GIF',
'ext' => 'gif',
'icon' => 'gif-dist.png',
], [
'id' => '4',
'name' => 'BMP',
'ext' => 'bmp',
'icon' => 'bmp-dist.png',
], [
'id' => '5',
'name' => 'Photoshop',
'ext' => 'psd',
'icon' => 'psd-dist.png',
], [
'id' => '6',
'name' => 'TIFF',
'ext' => 'tif',
'icon' => 'tif-dist.png',
], [
'id' => '7',
'name' => 'AIFF',
'ext' => 'aiff',
'icon' => 'aiff-dist.png',
], [
'id' => '8',
'name' => 'Windows Media',
'ext' => 'asf',
'icon' => 'asf-dist.png',
], [
'id' => '9',
'name' => 'Windows Media',
'ext' => 'avi',
'icon' => 'avi-dist.png',
], [
'id' => '44',
'name' => 'C source',
'ext' => 'c',
'icon' => 'c-dist.png',
], [
'id' => '27',
'name' => 'RealAudio',
'ext' => 'rm',
'icon' => 'rm-dist.png',
], [
'id' => '16',
'name' => 'Midi',
'ext' => 'mid',
'icon' => 'mid-dist.png',
], [
'id' => '17',
'name' => 'QuickTime',
'ext' => 'mov',
'icon' => 'mov-dist.png',
], [
'id' => '18',
'name' => 'MP3',
'ext' => 'mp3',
'icon' => 'mp3-dist.png',
], [
'id' => '19',
'name' => 'MPEG',
'ext' => 'mpg',
'icon' => 'mpg-dist.png',
], [
'id' => '20',
'name' => 'Ogg Vorbis',
'ext' => 'ogg',
'icon' => 'ogg-dist.png',
], [
'id' => '24',
'name' => 'QuickTime',
'ext' => 'qt',
'icon' => 'qt-dist.png',
], [
'id' => '10',
'name' => 'BZip',
'ext' => 'bz2',
'icon' => 'bz2-dist.png',
], [
'id' => '25',
'name' => 'RealAudio',
'ext' => 'ra',
'icon' => 'ra-dist.png',
], [
'id' => '26',
'name' => 'RealAudio',
'ext' => 'ram',
'icon' => 'ram-dist.png',
], [
'id' => '11',
'name' => 'Word',
'ext' => 'doc',
'icon' => 'doc-dist.png',
], [
'id' => '12',
'name' => 'DjVu',
'ext' => 'djvu',
'icon' => '',
], [
'id' => '42',
'name' => 'MNG',
'ext' => 'mng',
'icon' => '',
], [
'id' => '13',
'name' => 'PostScript',
'ext' => 'eps',
'icon' => 'ps-dist.png',
], [
'id' => '14',
'name' => 'GZ',
'ext' => 'gz',
'icon' => 'gz-dist.png',
], [
'id' => '37',
'name' => 'WAV',
'ext' => 'wav',
'icon' => 'wav-dist.png',
], [
'id' => '15',
'name' => 'HTML',
'ext' => 'html',
'icon' => 'html-dist.png',
], [
'id' => '34',
'name' => 'Flash',
'ext' => 'swf',
'icon' => 'swf-dist.png',
], [
'id' => '21',
'name' => 'PDF',
'ext' => 'pdf',
'icon' => 'pdf-dist.png',
], [
'id' => '22',
'name' => 'PowerPoint',
'ext' => 'ppt',
'icon' => 'ppt-dist.png',
], [
'id' => '23',
'name' => 'PostScript',
'ext' => 'ps',
'icon' => 'ps-dist.png',
], [
'id' => '40',
'name' => 'Windows Media',
'ext' => 'wmv',
'icon' => 'wmv-dist.png',
], [
'id' => '28',
'name' => 'RTF',
'ext' => 'rtf',
'icon' => 'rtf-dist.png',
], [
'id' => '29',
'name' => 'StarOffice',
'ext' => 'sdd',
'icon' => 'sdd-dist.png',
], [
'id' => '30',
'name' => 'StarOffice',
'ext' => 'sdw',
'icon' => 'sdw-dist.png',
], [
'id' => '31',
'name' => 'Stuffit',
'ext' => 'sit',
'icon' => 'sit-dist.png',
], [
'id' => '43',
'name' => 'Adobe Illustrator',
'ext' => 'ai',
'icon' => 'ai-dist.png',
], [
'id' => '32',
'name' => 'OpenOffice Impress',
'ext' => 'sxi',
'icon' => 'sxi-dist.png',
], [
'id' => '33',
'name' => 'OpenOffice',
'ext' => 'sxw',
'icon' => 'sxw-dist.png',
], [
'id' => '46',
'name' => 'DVI',
'ext' => 'dvi',
'icon' => 'dvi-dist.png',
], [
'id' => '35',
'name' => 'TGZ',
'ext' => 'tgz',
'icon' => 'tgz-dist.png',
], [
'id' => '36',
'name' => 'texte',
'ext' => 'txt',
'icon' => 'txt-dist.png',
], [
'id' => '49',
'name' => 'RedHat/Mandrake/SuSE',
'ext' => 'rpm',
'icon' => 'rpm-dist.png',
], [
'id' => '38',
'name' => 'Excel',
'ext' => 'xls',
'icon' => 'xls-dist.png',
], [
'id' => '39',
'name' => 'XML',
'ext' => 'xml',
'icon' => 'xml-dist.png',
], [
'id' => '41',
'name' => 'Zip',
'ext' => 'zip',
'icon' => 'zip-dist.png',
], [
'id' => '45',
'name' => 'Debian',
'ext' => 'deb',
'icon' => 'deb-dist.png',
], [
'id' => '47',
'name' => 'C header',
'ext' => 'h',
'icon' => 'h-dist.png',
], [
'id' => '48',
'name' => 'Pascal',
'ext' => 'pas',
'icon' => 'pas-dist.png',
], [
'id' => '50',
'name' => 'OpenOffice Calc',
'ext' => 'sxc',
'icon' => 'sxc-dist.png',
], [
'id' => '51',
'name' => 'LaTeX',
'ext' => 'tex',
'icon' => 'tex-dist.png',
], [
'id' => '52',
'name' => 'GIMP multi-layer',
'ext' => 'xcf',
'icon' => 'xcf-dist.png',
], [
'id' => '53',
'name' => 'JPEG',
'ext' => 'jpeg',
'icon' => 'jpg-dist.png',
], [
'id' => '54',
'name' => 'Oasis Open Office Writer',
'ext' => 'odt',
'icon' => 'odt-dist.png',
], [
'id' => '55',
'name' => 'Oasis Open Office Calc',
'ext' => 'ods',
'icon' => 'ods-dist.png',
], [
'id' => '56',
'name' => 'Oasis Open Office Impress',
'ext' => 'odp',
'icon' => 'odp-dist.png',
], [
'id' => '57',
'name' => 'Oasis Open Office Impress Template',
'ext' => 'otp',
'icon' => 'odp-dist.png',
], [
'id' => '58',
'name' => 'Oasis Open Office Writer Template',
'ext' => 'ott',
'icon' => 'odt-dist.png',
], [
'id' => '59',
'name' => 'Oasis Open Office Calc Template',
'ext' => 'ots',
'icon' => 'ods-dist.png',
], [
'id' => '60',
'name' => 'Oasis Open Office Math',
'ext' => 'odf',
'icon' => 'odf-dist.png',
], [
'id' => '61',
'name' => 'Oasis Open Office Draw',
'ext' => 'odg',
'icon' => 'odg-dist.png',
], [
'id' => '62',
'name' => 'Oasis Open Office Draw Template',
'ext' => 'otg',
'icon' => 'odg-dist.png',
], [
'id' => '63',
'name' => 'Oasis Open Office Base',
'ext' => 'odb',
'icon' => 'odb-dist.png',
], [
'id' => '64',
'name' => 'Oasis Open Office HTML',
'ext' => 'oth',
'icon' => 'oth-dist.png',
], [
'id' => '65',
'name' => 'Oasis Open Office Writer Master',
'ext' => 'odm',
'icon' => 'odm-dist.png',
], [
'id' => '66',
'name' => 'Oasis Open Office Chart',
'ext' => 'odc',
'icon' => '',
], [
'id' => '67',
'name' => 'Oasis Open Office Image',
'ext' => 'odi',
'icon' => '',
], [
'id' => '68',
'name' => 'Word XML',
'ext' => 'docx',
'icon' => 'doc-dist.png',
], [
'id' => '69',
'name' => 'Excel XML',
'ext' => 'xlsx',
'icon' => 'xls-dist.png',
], [
'id' => '70',
'name' => 'PowerPoint XML',
'ext' => 'pptx',
'icon' => 'ppt-dist.png',
], [
'id' => '71',
'name' => 'Comma-Separated Values',
'ext' => 'csv',
'icon' => 'csv-dist.png',
], [
'id' => '72',
'name' => 'Scalable Vector Graphics',
'ext' => 'svg',
'icon' => 'svg-dist.png',
],
];
$tables['glpi_entities'] = [
[
'id' => 0,
'name' => __('Root entity'),
'entities_id' => null,
'completename' => __('Root entity'),
'comment' => null,
'level' => 1,
'cartridges_alert_repeat' => 0,
'consumables_alert_repeat' => 0,
'use_licenses_alert' => 0,
'send_licenses_alert_before_delay' => 0,
'use_certificates_alert' => 0,
'send_certificates_alert_before_delay' => 0,
'certificates_alert_repeat_interval' => 0,
'use_contracts_alert' => 0,
'send_contracts_alert_before_delay' => 0,
'use_infocoms_alert' => 0,
'send_infocoms_alert_before_delay' => 0,
'use_reservations_alert' => 0,
'autoclose_delay' => -10,
'notclosed_delay' => 0,
'calendars_strategy' => 0,
'auto_assign_mode' => -10,
'tickettype' => 1,
'inquest_config' => 1,
'inquest_rate' => 0,
'inquest_delay' => 0,
'autofill_warranty_date' => 0,
'autofill_use_date' => 0,
'autofill_buy_date' => 0,
'autofill_delivery_date' => 0,
'autofill_order_date' => 0,
'tickettemplates_strategy' => 0,
'tickettemplates_id' => 1,
'changetemplates_strategy' => 0,
'changetemplates_id' => 1,
'problemtemplates_strategy' => 0,
'problemtemplates_id' => 1,
'entities_strategy_software' => -10,
'default_contract_alert' => 0,
'default_infocom_alert' => 0,
'default_cartridges_alarm_threshold' => 10,
'default_consumables_alarm_threshold' => 10,
'delay_send_emails' => 0,
'is_notif_enable_default' => 1,
'autofill_decommission_date' => 0,
'suppliers_as_private' => 0,
'enable_custom_css' => 0,
'anonymize_support_agents' => 0,
'display_users_initials' => 1,
'contracts_strategy_default' => 0,
'transfers_strategy' => 0,
],
];
$tables['glpi_filesystems'] = [
[
'id' => 1,
'name' => 'ext',
],
[
'id' => 2,
'name' => 'ext2',
],
[
'id' => 3,
'name' => 'ext3',
],
[
'id' => 4,
'name' => 'ext4',
],
[
'id' => 5,
'name' => 'FAT',
],
[
'id' => 6,
'name' => 'FAT32',
],
[
'id' => 7,
'name' => 'VFAT',
],
[
'id' => 8,
'name' => 'HFS',
],
[
'id' => 9,
'name' => 'HPFS',
],
[
'id' => 10,
'name' => 'HTFS',
],
[
'id' => 11,
'name' => 'JFS',
],
[
'id' => 12,
'name' => 'JFS2',
],
[
'id' => 13,
'name' => 'NFS',
],
[
'id' => 14,
'name' => 'NTFS',
],
[
'id' => 15,
'name' => 'ReiserFS',
],
[
'id' => 16,
'name' => 'SMBFS',
],
[
'id' => 17,
'name' => 'UDF',
],
[
'id' => 18,
'name' => 'UFS',
],
[
'id' => 19,
'name' => 'XFS',
],
[
'id' => 20,
'name' => 'ZFS',
],
[
'id' => 21,
'name' => 'APFS',
],
];
$tables['glpi_interfacetypes'] = [
[
'id' => 1,
'name' => 'IDE',
],
[
'id' => 2,
'name' => 'SATA',
],
[
'id' => 3,
'name' => 'SCSI',
],
[
'id' => 4,
'name' => 'USB',
],
[
'id' => 5,
'name' => 'AGP',
],
[
'id' => 6,
'name' => 'PCI',
],
[
'id' => 7,
'name' => 'PCIe',
],
[
'id' => 8,
'name' => 'PCI-X',
],
];
$tables['glpi_notifications'] = [
[
'id' => 1,
'name' => 'Alert Tickets not closed',
'itemtype' => 'Ticket',
'event' => 'alertnotclosed',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 2,
'name' => 'New Ticket',
'itemtype' => 'Ticket',
'event' => 'new',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 3,
'name' => 'Update Ticket',
'itemtype' => 'Ticket',
'event' => 'update',
'is_recursive' => 1,
'is_active' => 0,
], [
'id' => 4,
'name' => 'Close Ticket',
'itemtype' => 'Ticket',
'event' => 'closed',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 5,
'name' => 'Add Followup',
'itemtype' => 'Ticket',
'event' => 'add_followup',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 6,
'name' => 'Add Task',
'itemtype' => 'Ticket',
'event' => 'add_task',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 7,
'name' => 'Update Followup',
'itemtype' => 'Ticket',
'event' => 'update_followup',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 8,
'name' => 'Update Task',
'itemtype' => 'Ticket',
'event' => 'update_task',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 9,
'name' => 'Delete Followup',
'itemtype' => 'Ticket',
'event' => 'delete_followup',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 10,
'name' => 'Delete Task',
'itemtype' => 'Ticket',
'event' => 'delete_task',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 11,
'name' => 'Resolve ticket',
'itemtype' => 'Ticket',
'event' => 'solved',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 12,
'name' => 'Ticket Validation',
'itemtype' => 'Ticket',
'event' => 'validation',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 13,
'name' => 'New Reservation',
'itemtype' => 'Reservation',
'event' => 'new',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 14,
'name' => 'Update Reservation',
'itemtype' => 'Reservation',
'event' => 'update',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 15,
'name' => 'Delete Reservation',
'itemtype' => 'Reservation',
'event' => 'delete',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 16,
'name' => 'Alert Reservation',
'itemtype' => 'Reservation',
'event' => 'alert',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 17,
'name' => 'Contract Notice',
'itemtype' => 'Contract',
'event' => 'notice',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 18,
'name' => 'Contract End',
'itemtype' => 'Contract',
'event' => 'end',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 19,
'name' => 'MySQL Synchronization',
'itemtype' => 'DBConnection',
'event' => 'desynchronization',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 20,
'name' => 'Cartridges',
'itemtype' => 'CartridgeItem',
'event' => 'alert',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 21,
'name' => 'Consumables',
'itemtype' => 'ConsumableItem',
'event' => 'alert',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 22,
'name' => 'Infocoms',
'itemtype' => 'Infocom',
'event' => 'alert',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 23,
'name' => 'Software Licenses',
'itemtype' => 'SoftwareLicense',
'event' => 'alert',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 24,
'name' => 'Ticket Recall',
'itemtype' => 'Ticket',
'event' => 'recall',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 25,
'name' => 'Password Forget',
'itemtype' => 'User',
'event' => 'passwordforget',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 26,
'name' => 'Ticket Satisfaction',
'itemtype' => 'Ticket',
'event' => 'satisfaction',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 27,
'name' => 'Item not unique',
'itemtype' => 'FieldUnicity',
'event' => 'refuse',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 28,
'name' => 'CronTask Watcher',
'itemtype' => 'CronTask',
'event' => 'alert',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 29,
'name' => 'New Problem',
'itemtype' => 'Problem',
'event' => 'new',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 30,
'name' => 'Update Problem',
'itemtype' => 'Problem',
'event' => 'update',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 31,
'name' => 'Resolve Problem',
'itemtype' => 'Problem',
'event' => 'solved',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 32,
'name' => 'Add Task',
'itemtype' => 'Problem',
'event' => 'add_task',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 33,
'name' => 'Update Task',
'itemtype' => 'Problem',
'event' => 'update_task',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 34,
'name' => 'Delete Task',
'itemtype' => 'Problem',
'event' => 'delete_task',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 35,
'name' => 'Close Problem',
'itemtype' => 'Problem',
'event' => 'closed',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 36,
'name' => 'Delete Problem',
'itemtype' => 'Problem',
'event' => 'delete',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 37,
'name' => 'Ticket Validation Answer',
'itemtype' => 'Ticket',
'event' => 'validation_answer',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 38,
'name' => 'Contract End Periodicity',
'itemtype' => 'Contract',
'event' => 'periodicity',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 39,
'name' => 'Contract Notice Periodicity',
'itemtype' => 'Contract',
'event' => 'periodicitynotice',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 40,
'name' => 'Planning recall',
'itemtype' => 'PlanningRecall',
'event' => 'planningrecall',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 41,
'name' => 'Delete Ticket',
'itemtype' => 'Ticket',
'event' => 'delete',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 42,
'name' => 'New Change',
'itemtype' => 'Change',
'event' => 'new',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 43,
'name' => 'Update Change',
'itemtype' => 'Change',
'event' => 'update',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 44,
'name' => 'Resolve Change',
'itemtype' => 'Change',
'event' => 'solved',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 45,
'name' => 'Add Task',
'itemtype' => 'Change',
'event' => 'add_task',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 46,
'name' => 'Update Task',
'itemtype' => 'Change',
'event' => 'update_task',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 47,
'name' => 'Delete Task',
'itemtype' => 'Change',
'event' => 'delete_task',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 48,
'name' => 'Close Change',
'itemtype' => 'Change',
'event' => 'closed',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 49,
'name' => 'Delete Change',
'itemtype' => 'Change',
'event' => 'delete',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 50,
'name' => 'Ticket Satisfaction Answer',
'itemtype' => 'Ticket',
'event' => 'replysatisfaction',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 51,
'name' => 'Receiver errors',
'itemtype' => 'MailCollector',
'event' => 'error',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 52,
'name' => 'New Project',
'itemtype' => 'Project',
'event' => 'new',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 53,
'name' => 'Update Project',
'itemtype' => 'Project',
'event' => 'update',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 54,
'name' => 'Delete Project',
'itemtype' => 'Project',
'event' => 'delete',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 55,
'name' => 'New Project Task',
'itemtype' => 'ProjectTask',
'event' => 'new',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 56,
'name' => 'Update Project Task',
'itemtype' => 'ProjectTask',
'event' => 'update',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 57,
'name' => 'Delete Project Task',
'itemtype' => 'ProjectTask',
'event' => 'delete',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 58,
'name' => 'Request Unlock Items',
'itemtype' => 'ObjectLock',
'event' => 'unlock',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 59,
'name' => 'New user in requesters',
'itemtype' => 'Ticket',
'event' => 'requester_user',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 60,
'name' => 'New group in requesters',
'itemtype' => 'Ticket',
'event' => 'requester_group',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 61,
'name' => 'New user in observers',
'itemtype' => 'Ticket',
'event' => 'observer_user',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 62,
'name' => 'New group in observers',
'itemtype' => 'Ticket',
'event' => 'observer_group',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 63,
'name' => 'New user in assignees',
'itemtype' => 'Ticket',
'event' => 'assign_user',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 64,
'name' => 'New group in assignees',
'itemtype' => 'Ticket',
'event' => 'assign_group',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 65,
'name' => 'New supplier in assignees',
'itemtype' => 'Ticket',
'event' => 'assign_supplier',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 66,
'name' => 'Saved searches',
'itemtype' => 'SavedSearch_Alert',
'event' => 'alert',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 67,
'name' => 'Certificates',
'itemtype' => 'Certificate',
'event' => 'alert',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 68,
'name' => 'Alert expired domains',
'itemtype' => 'Domain',
'event' => 'ExpiredDomains',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 69,
'name' => 'Alert domains close expiries',
'itemtype' => 'Domain',
'event' => 'DomainsWhichExpire',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 70,
'name' => 'Password expires alert',
'itemtype' => 'User',
'event' => 'passwordexpires',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 71,
'name' => 'Check plugin updates',
'itemtype' => 'Glpi\\Marketplace\\Controller',
'event' => 'checkpluginsupdate',
'is_recursive' => 1,
'is_active' => 1,
], [
'id' => 72,
'name' => 'New user mentionned',
'itemtype' => 'Ticket',
'event' => 'user_mention',
'is_recursive' => 1,
'is_active' => 1,
],
];
$tables['glpi_notifications_notificationtemplates'] = [
[
'id' => 1,
'notifications_id' => '1',
'mode' => 'mailing',
'notificationtemplates_id' => 6,
], [
'id' => 2,
'notifications_id' => '2',
'mode' => 'mailing',
'notificationtemplates_id' => 4,
], [
'id' => 3,
'notifications_id' => '3',
'mode' => 'mailing',
'notificationtemplates_id' => 4,
], [
'id' => 4,
'notifications_id' => '4',
'mode' => 'mailing',
'notificationtemplates_id' => 4,
], [
'id' => 5,
'notifications_id' => '5',
'mode' => 'mailing',
'notificationtemplates_id' => 4,
], [
'id' => 6,
'notifications_id' => '6',
'mode' => 'mailing',
'notificationtemplates_id' => 4,
], [
'id' => 7,
'notifications_id' => '7',
'mode' => 'mailing',
'notificationtemplates_id' => 4,
], [
'id' => 8,
'notifications_id' => '8',
'mode' => 'mailing',
'notificationtemplates_id' => 4,
], [
'id' => 9,
'notifications_id' => '9',
'mode' => 'mailing',
'notificationtemplates_id' => 4,
], [
'id' => 10,
'notifications_id' => '10',
'mode' => 'mailing',
'notificationtemplates_id' => 4,
], [
'id' => 11,
'notifications_id' => '11',
'mode' => 'mailing',
'notificationtemplates_id' => 4,
], [
'id' => 12,
'notifications_id' => '12',
'mode' => 'mailing',
'notificationtemplates_id' => 7,
], [
'id' => 13,
'notifications_id' => '13',
'mode' => 'mailing',
'notificationtemplates_id' => 2,
], [
'id' => 14,
'notifications_id' => '14',
'mode' => 'mailing',
'notificationtemplates_id' => 2,
], [
'id' => 15,
'notifications_id' => '15',
'mode' => 'mailing',
'notificationtemplates_id' => 2,
], [
'id' => 16,
'notifications_id' => '16',
'mode' => 'mailing',
'notificationtemplates_id' => 3,
], [
'id' => 17,
'notifications_id' => '17',
'mode' => 'mailing',
'notificationtemplates_id' => 12,
], [
'id' => 18,
'notifications_id' => '18',
'mode' => 'mailing',
'notificationtemplates_id' => 12,
], [
'id' => 19,
'notifications_id' => '19',
'mode' => 'mailing',
'notificationtemplates_id' => 1,
], [
'id' => 20,
'notifications_id' => '20',
'mode' => 'mailing',
'notificationtemplates_id' => 8,
], [
'id' => 21,
'notifications_id' => '21',
'mode' => 'mailing',
'notificationtemplates_id' => 9,
], [
'id' => 22,
'notifications_id' => '22',
'mode' => 'mailing',
'notificationtemplates_id' => 10,
], [
'id' => 23,
'notifications_id' => '23',
'mode' => 'mailing',
'notificationtemplates_id' => 11,
], [
'id' => 24,
'notifications_id' => '24',
'mode' => 'mailing',
'notificationtemplates_id' => 4,
], [
'id' => 25,
'notifications_id' => '25',
'mode' => 'mailing',
'notificationtemplates_id' => 13,
], [
'id' => 26,
'notifications_id' => '26',
'mode' => 'mailing',
'notificationtemplates_id' => 14,
], [
'id' => 27,
'notifications_id' => '27',
'mode' => 'mailing',
'notificationtemplates_id' => 15,
], [
'id' => 28,
'notifications_id' => '28',
'mode' => 'mailing',
'notificationtemplates_id' => 16,
], [
'id' => 29,
'notifications_id' => '29',
'mode' => 'mailing',
'notificationtemplates_id' => 17,
], [
'id' => 30,
'notifications_id' => '30',
'mode' => 'mailing',
'notificationtemplates_id' => 17,
], [
'id' => 31,
'notifications_id' => '31',
'mode' => 'mailing',
'notificationtemplates_id' => 17,
], [
'id' => 32,
'notifications_id' => '32',
'mode' => 'mailing',
'notificationtemplates_id' => 17,
], [
'id' => 33,
'notifications_id' => '33',
'mode' => 'mailing',
'notificationtemplates_id' => 17,
], [
'id' => 34,
'notifications_id' => '34',
'mode' => 'mailing',
'notificationtemplates_id' => 17,
], [
'id' => 35,
'notifications_id' => '35',
'mode' => 'mailing',
'notificationtemplates_id' => 17,
], [
'id' => 36,
'notifications_id' => '36',
'mode' => 'mailing',
'notificationtemplates_id' => 17,
], [
'id' => 37,
'notifications_id' => '37',
'mode' => 'mailing',
'notificationtemplates_id' => 7,
], [
'id' => 38,
'notifications_id' => '38',
'mode' => 'mailing',
'notificationtemplates_id' => 12,
], [
'id' => 39,
'notifications_id' => '39',
'mode' => 'mailing',
'notificationtemplates_id' => 12,
], [
'id' => 40,
'notifications_id' => '40',
'mode' => 'mailing',
'notificationtemplates_id' => 18,
], [
'id' => 41,
'notifications_id' => '41',
'mode' => 'mailing',
'notificationtemplates_id' => 4,
], [
'id' => 42,
'notifications_id' => '42',
'mode' => 'mailing',
'notificationtemplates_id' => 19,
], [
'id' => 43,
'notifications_id' => '43',
'mode' => 'mailing',
'notificationtemplates_id' => 19,
], [
'id' => 44,
'notifications_id' => '44',
'mode' => 'mailing',
'notificationtemplates_id' => 19,
], [
'id' => 45,
'notifications_id' => '45',
'mode' => 'mailing',
'notificationtemplates_id' => 19,
], [
'id' => 46,
'notifications_id' => '46',
'mode' => 'mailing',
'notificationtemplates_id' => 19,
], [
'id' => 47,
'notifications_id' => '47',
'mode' => 'mailing',
'notificationtemplates_id' => 19,
], [
'id' => 48,
'notifications_id' => '48',
'mode' => 'mailing',
'notificationtemplates_id' => 19,
], [
'id' => 49,
'notifications_id' => '49',
'mode' => 'mailing',
'notificationtemplates_id' => 19,
], [
'id' => 50,
'notifications_id' => '50',
'mode' => 'mailing',
'notificationtemplates_id' => 14,
], [
'id' => 51,
'notifications_id' => '51',
'mode' => 'mailing',
'notificationtemplates_id' => 20,
], [
'id' => 52,
'notifications_id' => '52',
'mode' => 'mailing',
'notificationtemplates_id' => 21,
], [
'id' => 53,
'notifications_id' => '53',
'mode' => 'mailing',
'notificationtemplates_id' => 21,
], [
'id' => 54,
'notifications_id' => '54',
'mode' => 'mailing',
'notificationtemplates_id' => 21,
], [
'id' => 55,
'notifications_id' => '55',
'mode' => 'mailing',
'notificationtemplates_id' => 22,
], [
'id' => 56,
'notifications_id' => '56',
'mode' => 'mailing',
'notificationtemplates_id' => 22,
], [
'id' => 57,
'notifications_id' => '57',
'mode' => 'mailing',
'notificationtemplates_id' => 22,
], [
'id' => 58,
'notifications_id' => '58',
'mode' => 'mailing',
'notificationtemplates_id' => 23,
], [
'id' => 59,
'notifications_id' => '59',
'mode' => 'mailing',
'notificationtemplates_id' => 4,
], [
'id' => 60,
'notifications_id' => '60',
'mode' => 'mailing',
'notificationtemplates_id' => 4,
], [
'id' => 61,
'notifications_id' => '61',
'mode' => 'mailing',
'notificationtemplates_id' => 4,
], [
'id' => 62,
'notifications_id' => '62',
'mode' => 'mailing',
'notificationtemplates_id' => 4,
], [
'id' => 63,
'notifications_id' => '63',
'mode' => 'mailing',
'notificationtemplates_id' => 4,
], [
'id' => 64,
'notifications_id' => '64',
'mode' => 'mailing',
'notificationtemplates_id' => 4,
], [
'id' => 65,
'notifications_id' => '65',
'mode' => 'mailing',
'notificationtemplates_id' => 4,
], [
'id' => 66,
'notifications_id' => '66',
'mode' => 'mailing',
'notificationtemplates_id' => 24,
], [
'id' => 67,
'notifications_id' => '67',
'mode' => 'mailing',
'notificationtemplates_id' => 25,
], [
'id' => 68,
'notifications_id' => '68',
'mode' => 'mailing',
'notificationtemplates_id' => 26,
], [
'id' => 69,
'notifications_id' => '69',
'mode' => 'mailing',
'notificationtemplates_id' => 26,
], [
'id' => 70,
'notifications_id' => '70',
'mode' => 'mailing',
'notificationtemplates_id' => 27,
], [
'id' => 71,
'notifications_id' => '71',
'mode' => 'mailing',
'notificationtemplates_id' => 28,
], [
'id' => 72,
'notifications_id' => '72',
'mode' => 'mailing',
'notificationtemplates_id' => 4,
],
];
$tables['glpi_notificationtargets'] = [
[
'id' => '1',
'items_id' => '3',
'type' => '1',
'notifications_id' => '13',
], [
'id' => '2',
'items_id' => '1',
'type' => '1',
'notifications_id' => '13',
], [
'id' => '3',
'items_id' => '3',
'type' => '2',
'notifications_id' => '2',
], [
'id' => '4',
'items_id' => '1',
'type' => '1',
'notifications_id' => '2',
], [
'id' => '5',
'items_id' => '1',
'type' => '1',
'notifications_id' => '3',
], [
'id' => '6',
'items_id' => '1',
'type' => '1',
'notifications_id' => '5',
], [
'id' => '7',
'items_id' => '1',
'type' => '1',
'notifications_id' => '4',
], [
'id' => '8',
'items_id' => '2',
'type' => '1',
'notifications_id' => '3',
], [
'id' => '9',
'items_id' => '4',
'type' => '1',
'notifications_id' => '3',
], [
'id' => '10',
'items_id' => '3',
'type' => '1',
'notifications_id' => '2',
], [
'id' => '11',
'items_id' => '3',
'type' => '1',
'notifications_id' => '3',
], [
'id' => '12',
'items_id' => '3',
'type' => '1',
'notifications_id' => '5',
], [
'id' => '13',
'items_id' => '3',
'type' => '1',
'notifications_id' => '4',
], [
'id' => '14',
'items_id' => '1',
'type' => '1',
'notifications_id' => '19',
], [
'id' => '15',
'items_id' => '14',
'type' => '1',
'notifications_id' => '12',
], [
'id' => '16',
'items_id' => '3',
'type' => '1',
'notifications_id' => '14',
], [
'id' => '17',
'items_id' => '1',
'type' => '1',
'notifications_id' => '14',
], [
'id' => '18',
'items_id' => '3',
'type' => '1',
'notifications_id' => '15',
], [
'id' => '19',
'items_id' => '1',
'type' => '1',
'notifications_id' => '15',
], [
'id' => '20',
'items_id' => '1',
'type' => '1',
'notifications_id' => '6',
], [
'id' => '21',
'items_id' => '3',
'type' => '1',
'notifications_id' => '6',
], [
'id' => '22',
'items_id' => '1',
'type' => '1',
'notifications_id' => '7',
], [
'id' => '23',
'items_id' => '3',
'type' => '1',
'notifications_id' => '7',
], [
'id' => '24',
'items_id' => '1',
'type' => '1',
'notifications_id' => '8',
], [
'id' => '25',
'items_id' => '3',
'type' => '1',
'notifications_id' => '8',
], [
'id' => '26',
'items_id' => '1',
'type' => '1',
'notifications_id' => '9',
], [
'id' => '27',
'items_id' => '3',
'type' => '1',
'notifications_id' => '9',
], [
'id' => '28',
'items_id' => '1',
'type' => '1',
'notifications_id' => '10',
], [
'id' => '29',
'items_id' => '3',
'type' => '1',
'notifications_id' => '10',
], [
'id' => '30',
'items_id' => '1',
'type' => '1',
'notifications_id' => '11',
], [
'id' => '31',
'items_id' => '3',
'type' => '1',
'notifications_id' => '11',
], [
'id' => '32',
'items_id' => '19',
'type' => '1',
'notifications_id' => '25',
], [
'id' => '33',
'items_id' => '3',
'type' => '1',
'notifications_id' => '26',
], [
'id' => '34',
'items_id' => '21',
'type' => '1',
'notifications_id' => '2',
], [
'id' => '35',
'items_id' => '21',
'type' => '1',
'notifications_id' => '3',
], [
'id' => '36',
'items_id' => '21',
'type' => '1',
'notifications_id' => '5',
], [
'id' => '37',
'items_id' => '21',
'type' => '1',
'notifications_id' => '4',
], [
'id' => '38',
'items_id' => '21',
'type' => '1',
'notifications_id' => '6',
], [
'id' => '39',
'items_id' => '21',
'type' => '1',
'notifications_id' => '7',
], [
'id' => '40',
'items_id' => '21',
'type' => '1',
'notifications_id' => '8',
], [
'id' => '41',
'items_id' => '21',
'type' => '1',
'notifications_id' => '9',
], [
'id' => '42',
'items_id' => '21',
'type' => '1',
'notifications_id' => '10',
], [
'id' => '43',
'items_id' => '21',
'type' => '1',
'notifications_id' => '11',
], [
'id' => '75',
'items_id' => '1',
'type' => '1',
'notifications_id' => '41',
], [
'id' => '46',
'items_id' => '1',
'type' => '1',
'notifications_id' => '28',
], [
'id' => '47',
'items_id' => '3',
'type' => '1',
'notifications_id' => '29',
], [
'id' => '48',
'items_id' => '1',
'type' => '1',
'notifications_id' => '29',
], [
'id' => '49',
'items_id' => '21',
'type' => '1',
'notifications_id' => '29',
], [
'id' => '50',
'items_id' => '2',
'type' => '1',
'notifications_id' => '30',
], [
'id' => '51',
'items_id' => '4',
'type' => '1',
'notifications_id' => '30',
], [
'id' => '52',
'items_id' => '3',
'type' => '1',
'notifications_id' => '30',
], [
'id' => '53',
'items_id' => '1',
'type' => '1',
'notifications_id' => '30',
], [
'id' => '54',
'items_id' => '21',
'type' => '1',
'notifications_id' => '30',
], [
'id' => '55',
'items_id' => '3',
'type' => '1',
'notifications_id' => '31',
], [
'id' => '56',
'items_id' => '1',
'type' => '1',
'notifications_id' => '31',
], [
'id' => '57',
'items_id' => '21',
'type' => '1',
'notifications_id' => '31',
], [
'id' => '58',
'items_id' => '3',
'type' => '1',
'notifications_id' => '32',
], [
'id' => '59',
'items_id' => '1',
'type' => '1',
'notifications_id' => '32',
], [
'id' => '60',
'items_id' => '21',
'type' => '1',
'notifications_id' => '32',
], [
'id' => '61',
'items_id' => '3',
'type' => '1',
'notifications_id' => '33',
], [
'id' => '62',
'items_id' => '1',
'type' => '1',
'notifications_id' => '33',
], [
'id' => '63',
'items_id' => '21',
'type' => '1',
'notifications_id' => '33',
], [
'id' => '64',
'items_id' => '3',
'type' => '1',
'notifications_id' => '34',
], [
'id' => '65',
'items_id' => '1',
'type' => '1',
'notifications_id' => '34',
], [
'id' => '66',
'items_id' => '21',
'type' => '1',
'notifications_id' => '34',
], [
'id' => '67',
'items_id' => '3',
'type' => '1',
'notifications_id' => '35',
], [
'id' => '68',
'items_id' => '1',
'type' => '1',
'notifications_id' => '35',
], [
'id' => '69',
'items_id' => '21',
'type' => '1',
'notifications_id' => '35',
], [
'id' => '70',
'items_id' => '3',
'type' => '1',
'notifications_id' => '36',
], [
'id' => '71',
'items_id' => '1',
'type' => '1',
'notifications_id' => '36',
], [
'id' => '72',
'items_id' => '21',
'type' => '1',
'notifications_id' => '36',
], [
'id' => '73',
'items_id' => '14',
'type' => '1',
'notifications_id' => '37',
], [
'id' => '74',
'items_id' => '3',
'type' => '1',
'notifications_id' => '40',
], [
'id' => '76',
'items_id' => '3',
'type' => '1',
'notifications_id' => '42',
], [
'id' => '77',
'items_id' => '1',
'type' => '1',
'notifications_id' => '42',
], [
'id' => '78',
'items_id' => '21',
'type' => '1',
'notifications_id' => '42',
], [
'id' => '79',
'items_id' => '2',
'type' => '1',
'notifications_id' => '43',
], [
'id' => '80',
'items_id' => '4',
'type' => '1',
'notifications_id' => '43',
], [
'id' => '81',
'items_id' => '3',
'type' => '1',
'notifications_id' => '43',
], [
'id' => '82',
'items_id' => '1',
'type' => '1',
'notifications_id' => '43',
], [
'id' => '83',
'items_id' => '21',
'type' => '1',
'notifications_id' => '43',
], [
'id' => '84',
'items_id' => '3',
'type' => '1',
'notifications_id' => '44',
], [
'id' => '85',
'items_id' => '1',
'type' => '1',
'notifications_id' => '44',
], [
'id' => '86',
'items_id' => '21',
'type' => '1',
'notifications_id' => '44',
], [
'id' => '87',
'items_id' => '3',
'type' => '1',
'notifications_id' => '45',
], [
'id' => '88',
'items_id' => '1',
'type' => '1',
'notifications_id' => '45',
], [
'id' => '89',
'items_id' => '21',
'type' => '1',
'notifications_id' => '45',
], [
'id' => '90',
'items_id' => '3',
'type' => '1',
'notifications_id' => '46',
], [
'id' => '91',
'items_id' => '1',
'type' => '1',
'notifications_id' => '46',
], [
'id' => '92',
'items_id' => '21',
'type' => '1',
'notifications_id' => '46',
], [
'id' => '93',
'items_id' => '3',
'type' => '1',
'notifications_id' => '47',
], [
'id' => '94',
'items_id' => '1',
'type' => '1',
'notifications_id' => '47',
], [
'id' => '95',
'items_id' => '21',
'type' => '1',
'notifications_id' => '47',
], [
'id' => '96',
'items_id' => '3',
'type' => '1',
'notifications_id' => '48',
], [
'id' => '97',
'items_id' => '1',
'type' => '1',
'notifications_id' => '48',
], [
'id' => '98',
'items_id' => '21',
'type' => '1',
'notifications_id' => '48',
], [
'id' => '99',
'items_id' => '3',
'type' => '1',
'notifications_id' => '49',
], [
'id' => '100',
'items_id' => '1',
'type' => '1',
'notifications_id' => '49',
], [
'id' => '101',
'items_id' => '21',
'type' => '1',
'notifications_id' => '49',
], [
'id' => '102',
'items_id' => '3',
'type' => '1',
'notifications_id' => '50',
], [
'id' => '103',
'items_id' => '2',
'type' => '1',
'notifications_id' => '50',
], [
'id' => '104',
'items_id' => '1',
'type' => '1',
'notifications_id' => '51',
], [
'id' => '105',
'items_id' => '27',
'type' => '1',
'notifications_id' => '52',
], [
'id' => '106',
'items_id' => '1',
'type' => '1',
'notifications_id' => '52',
], [
'id' => '107',
'items_id' => '28',
'type' => '1',
'notifications_id' => '52',
], [
'id' => '108',
'items_id' => '27',
'type' => '1',
'notifications_id' => '53',
], [
'id' => '109',
'items_id' => '1',
'type' => '1',
'notifications_id' => '53',
], [
'id' => '110',
'items_id' => '28',
'type' => '1',
'notifications_id' => '53',
], [
'id' => '111',
'items_id' => '27',
'type' => '1',
'notifications_id' => '54',
], [
'id' => '112',
'items_id' => '1',
'type' => '1',
'notifications_id' => '54',
], [
'id' => '113',
'items_id' => '28',
'type' => '1',
'notifications_id' => '54',
], [
'id' => '114',
'items_id' => '31',
'type' => '1',
'notifications_id' => '55',
], [
'id' => '115',
'items_id' => '1',
'type' => '1',
'notifications_id' => '55',
], [
'id' => '116',
'items_id' => '32',
'type' => '1',
'notifications_id' => '55',
], [
'id' => '117',
'items_id' => '31',
'type' => '1',
'notifications_id' => '56',
], [
'id' => '118',
'items_id' => '1',
'type' => '1',
'notifications_id' => '56',
], [
'id' => '119',
'items_id' => '32',
'type' => '1',
'notifications_id' => '56',
], [
'id' => '120',
'items_id' => '31',
'type' => '1',
'notifications_id' => '57',
], [
'id' => '121',
'items_id' => '1',
'type' => '1',
'notifications_id' => '57',
], [
'id' => '122',
'items_id' => '32',
'type' => '1',
'notifications_id' => '57',
], [
'id' => '123',
'items_id' => '19',
'type' => '1',
'notifications_id' => '58',
], [
'id' => '124',
'items_id' => '3',
'type' => '1',
'notifications_id' => '59',
], [
'id' => '125',
'items_id' => '13',
'type' => '1',
'notifications_id' => '60',
], [
'id' => '126',
'items_id' => '21',
'type' => '1',
'notifications_id' => '61',
], [
'id' => '127',
'items_id' => '20',
'type' => '1',
'notifications_id' => '62',
], [
'id' => '128',
'items_id' => '2',
'type' => '1',
'notifications_id' => '63',
], [
'id' => '129',
'items_id' => '23',
'type' => '1',
'notifications_id' => '64',
], [
'id' => '130',
'items_id' => '8',
'type' => '1',
'notifications_id' => '65',
], [
'id' => '131',
'items_id' => '19',
'type' => '1',
'notifications_id' => '66',
], [
'id' => '132',
'items_id' => '5',
'type' => '1',
'notifications_id' => '67',
], [
'id' => '133',
'items_id' => '23',
'type' => '1',
'notifications_id' => '67',
], [
'id' => '134',
'items_id' => '5',
'type' => '1',
'notifications_id' => '68',
], [
'id' => '135',
'items_id' => '23',
'type' => '1',
'notifications_id' => '68',
], [
'id' => '136',
'items_id' => '5',
'type' => '1',
'notifications_id' => '69',
], [
'id' => '137',
'items_id' => '23',
'type' => '1',
'notifications_id' => '69',
], [
'id' => '138',
'items_id' => '19',
'type' => '1',
'notifications_id' => '70',
], [
'id' => '139',
'items_id' => '1',
'type' => '1',
'notifications_id' => '71',
], [
'id' => '140',
'items_id' => '39',
'type' => '1',
'notifications_id' => '72',
],
];
$tables['glpi_notificationtemplates'] = [
[
'id' => '1',
'name' => 'MySQL Synchronization',
'itemtype' => 'DBConnection',
], [
'id' => '2',
'name' => 'Reservations',
'itemtype' => 'Reservation',
], [
'id' => '3',
'name' => 'Alert Reservation',
'itemtype' => 'Reservation',
], [
'id' => '4',
'name' => 'Tickets',
'itemtype' => 'Ticket',
], [
'id' => '5',
'name' => 'Tickets (Simple)',
'itemtype' => 'Ticket',
], [
'id' => '6',
'name' => 'Alert Tickets not closed',
'itemtype' => 'Ticket',
], [
'id' => '7',
'name' => 'Tickets Validation',
'itemtype' => 'Ticket',
], [
'id' => '8',
'name' => 'Cartridges',
'itemtype' => 'CartridgeItem',
], [
'id' => '9',
'name' => 'Consumables',
'itemtype' => 'ConsumableItem',
], [
'id' => '10',
'name' => 'Infocoms',
'itemtype' => 'Infocom',
], [
'id' => '11',
'name' => 'Licenses',
'itemtype' => 'SoftwareLicense',
], [
'id' => '12',
'name' => 'Contracts',
'itemtype' => 'Contract',
], [
'id' => '13',
'name' => 'Password Forget',
'itemtype' => 'User',
], [
'id' => '14',
'name' => 'Ticket Satisfaction',
'itemtype' => 'Ticket',
], [
'id' => '15',
'name' => 'Item not unique',
'itemtype' => 'FieldUnicity',
], [
'id' => '16',
'name' => 'CronTask',
'itemtype' => 'CronTask',
], [
'id' => '17',
'name' => 'Problems',
'itemtype' => 'Problem',
], [
'id' => '18',
'name' => 'Planning recall',
'itemtype' => 'PlanningRecall',
], [
'id' => '19',
'name' => 'Changes',
'itemtype' => 'Change',
], [
'id' => '20',
'name' => 'Receiver errors',
'itemtype' => 'MailCollector',
], [
'id' => '21',
'name' => 'Projects',
'itemtype' => 'Project',
], [
'id' => '22',
'name' => 'Project Tasks',
'itemtype' => 'ProjectTask',
], [
'id' => '23',
'name' => 'Unlock Item request',
'itemtype' => 'ObjectLock',
], [
'id' => '24',
'name' => 'Saved searches alerts',
'itemtype' => 'SavedSearch_Alert',
], [
'id' => '25',
'name' => 'Certificates',
'itemtype' => 'Certificate',
], [
'id' => '26',
'name' => 'Alert domains',
'itemtype' => 'Domain',
], [
'id' => '27',
'name' => 'Password expires alert',
'itemtype' => 'User',
], [
'id' => '28',
'name' => 'Plugin updates',
'itemtype' => 'Glpi\\Marketplace\\Controller',
],
];
$tables['glpi_notificationtemplatetranslations'] = [
[
'id' => '1',
'notificationtemplates_id' => '1',
'language' => '',
'subject' => '##lang.dbconnection.title##',
'content_text' => '##lang.dbconnection.delay## : ##dbconnection.delay##',
'content_html' => '<p>##lang.dbconnection.delay## : ##dbconnection.delay##</p>',
], [
'id' => '2',
'notificationtemplates_id' => '2',
'language' => '',
'subject' => '##reservation.action##',
'content_text' => '======================================================================
##lang.reservation.user##: ##reservation.user##
##lang.reservation.item.name##: ##reservation.itemtype## - ##reservation.item.name##
##IFreservation.tech## ##lang.reservation.tech## ##reservation.tech## ##ENDIFreservation.tech##
##lang.reservation.begin##: ##reservation.begin##
##lang.reservation.end##: ##reservation.end##
##lang.reservation.comment##: ##reservation.comment##
======================================================================',
'content_html' => '<!-- description{ color: inherit; background: #ebebeb;border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; } -->
<p><span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;">##lang.reservation.user##:</span>##reservation.user##<br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;">##lang.reservation.item.name##:</span>##reservation.itemtype## - ##reservation.item.name##<br />##IFreservation.tech## ##lang.reservation.tech## ##reservation.tech####ENDIFreservation.tech##<br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;">##lang.reservation.begin##:</span> ##reservation.begin##<br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;">##lang.reservation.end##:</span>##reservation.end##<br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;">##lang.reservation.comment##:</span> ##reservation.comment##</p>',
], [
'id' => '3',
'notificationtemplates_id' => '3',
'language' => '',
'subject' => '##reservation.action## ##reservation.entity##',
'content_text' => '##lang.reservation.entity## : ##reservation.entity##
##FOREACHreservations##
##lang.reservation.itemtype## : ##reservation.itemtype##
##lang.reservation.item## : ##reservation.item##
##reservation.url##
##ENDFOREACHreservations##',
'content_html' => '<p>##lang.reservation.entity## : ##reservation.entity## <br /> <br />
##FOREACHreservations## <br />##lang.reservation.itemtype## : ##reservation.itemtype##<br />
##lang.reservation.item## : ##reservation.item##<br /> <br />
<a href="##reservation.url##"> ##reservation.url##</a><br />
##ENDFOREACHreservations##</p>',
], [
'id' => '4',
'notificationtemplates_id' => '4',
'language' => '',
'subject' => '##ticket.action## ##ticket.title##',
'content_text' => ' ##IFticket.storestatus=5##
##lang.ticket.url## : ##ticket.urlapprove##
##lang.ticket.autoclosewarning##
##lang.ticket.solvedate## : ##ticket.solvedate##
##lang.ticket.solution.type## : ##ticket.solution.type##
##lang.ticket.solution.description## : ##ticket.solution.description## ##ENDIFticket.storestatus##
##ELSEticket.storestatus## ##lang.ticket.url## : ##ticket.url## ##ENDELSEticket.storestatus##
##lang.ticket.description##
##lang.ticket.title## : ##ticket.title##
##lang.ticket.authors## : ##IFticket.authors## ##ticket.authors## ##ENDIFticket.authors## ##ELSEticket.authors##--##ENDELSEticket.authors##
##lang.ticket.creationdate## : ##ticket.creationdate##
##lang.ticket.closedate## : ##ticket.closedate##
##lang.ticket.requesttype## : ##ticket.requesttype##
##lang.ticket.item.name## :
##FOREACHitems##
##IFticket.itemtype##
##ticket.itemtype## - ##ticket.item.name##
##IFticket.item.model## ##lang.ticket.item.model## : ##ticket.item.model## ##ENDIFticket.item.model##
##IFticket.item.serial## ##lang.ticket.item.serial## : ##ticket.item.serial## ##ENDIFticket.item.serial##
##IFticket.item.otherserial## ##lang.ticket.item.otherserial## : ##ticket.item.otherserial## ##ENDIFticket.item.otherserial##
##ENDIFticket.itemtype##
##ENDFOREACHitems##
##IFticket.assigntousers## ##lang.ticket.assigntousers## : ##ticket.assigntousers## ##ENDIFticket.assigntousers##
##lang.ticket.status## : ##ticket.status##
##IFticket.assigntogroups## ##lang.ticket.assigntogroups## : ##ticket.assigntogroups## ##ENDIFticket.assigntogroups##
##lang.ticket.urgency## : ##ticket.urgency##
##lang.ticket.impact## : ##ticket.impact##
##lang.ticket.priority## : ##ticket.priority##
##IFticket.user.email## ##lang.ticket.user.email## : ##ticket.user.email ##ENDIFticket.user.email##
##IFticket.category## ##lang.ticket.category## : ##ticket.category## ##ENDIFticket.category## ##ELSEticket.category## ##lang.ticket.nocategoryassigned## ##ENDELSEticket.category##
##lang.ticket.content## : ##ticket.content##
##IFticket.storestatus=6##
##lang.ticket.solvedate## : ##ticket.solvedate##
##lang.ticket.solution.type## : ##ticket.solution.type##
##lang.ticket.solution.description## : ##ticket.solution.description##
##ENDIFticket.storestatus##
##FOREACHtimelineitems##
[##timelineitems.date##]
##lang.timelineitems.author## ##timelineitems.author##
##lang.timelineitems.description## ##timelineitems.description##
##lang.timelineitems.date## ##timelineitems.date##
##lang.timelineitems.position## ##timelineitems.position##
##lang.timelineitems.type## ##timelineitems.type##
##lang.timelineitems.typename## ##timelineitems.typename##
##ENDFOREACHtimelineitems##
##lang.ticket.numberoffollowups## : ##ticket.numberoffollowups##
##lang.ticket.numberoftasks## : ##ticket.numberoftasks##',
'content_html' => '<!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; } -->
<div>##IFticket.storestatus=5##</div>
<div>##lang.ticket.url## : <a href="##ticket.urlapprove##">##ticket.urlapprove##</a> <strong> </strong></div>
<div><strong>##lang.ticket.autoclosewarning##</strong></div>
<div><span style="color: #888888;"><strong><span style="text-decoration: underline;">##lang.ticket.solvedate##</span></strong></span> : ##ticket.solvedate##<br /><span style="text-decoration: underline; color: #888888;"><strong>##lang.ticket.solution.type##</strong></span> : ##ticket.solution.type##<br /><span style="text-decoration: underline; color: #888888;"><strong>##lang.ticket.solution.description##</strong></span> : ##ticket.solution.description## ##ENDIFticket.storestatus##</div>
<div>##ELSEticket.storestatus## ##lang.ticket.url## : <a href="##ticket.url##">##ticket.url##</a> ##ENDELSEticket.storestatus##</div>
<p class="description b"><strong>##lang.ticket.description##</strong></p>
<p><span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.ticket.title##</span> :##ticket.title## <br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.ticket.authors##</span> :##IFticket.authors## ##ticket.authors## ##ENDIFticket.authors## ##ELSEticket.authors##--##ENDELSEticket.authors## <br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.ticket.creationdate##</span> :##ticket.creationdate## <br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.ticket.closedate##</span> :##ticket.closedate## <br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.ticket.requesttype##</span> :##ticket.requesttype##<br />
<br /><span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.ticket.item.name##</span> :
<p>##FOREACHitems##</p>
<div class="description b">##IFticket.itemtype## ##ticket.itemtype## - ##ticket.item.name## ##IFticket.item.model## ##lang.ticket.item.model## : ##ticket.item.model## ##ENDIFticket.item.model## ##IFticket.item.serial## ##lang.ticket.item.serial## : ##ticket.item.serial## ##ENDIFticket.item.serial## ##IFticket.item.otherserial## ##lang.ticket.item.otherserial## : ##ticket.item.otherserial## ##ENDIFticket.item.otherserial## ##ENDIFticket.itemtype## </div><br />
<p>##ENDFOREACHitems##</p>
##IFticket.assigntousers## <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.ticket.assigntousers##</span> : ##ticket.assigntousers## ##ENDIFticket.assigntousers##<br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;">##lang.ticket.status## </span> : ##ticket.status##<br /> ##IFticket.assigntogroups## <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.ticket.assigntogroups##</span> : ##ticket.assigntogroups## ##ENDIFticket.assigntogroups##<br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.ticket.urgency##</span> : ##ticket.urgency##<br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.ticket.impact##</span> : ##ticket.impact##<br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.ticket.priority##</span> : ##ticket.priority## <br /> ##IFticket.user.email##<span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.ticket.user.email##</span> : ##ticket.user.email ##ENDIFticket.user.email## <br /> ##IFticket.category##<span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;">##lang.ticket.category## </span> :##ticket.category## ##ENDIFticket.category## ##ELSEticket.category## ##lang.ticket.nocategoryassigned## ##ENDELSEticket.category## <br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.ticket.content##</span> : ##ticket.content##</p>
<br />##IFticket.storestatus=6##<br /><span style="text-decoration: underline;"><strong><span style="color: #888888;">##lang.ticket.solvedate##</span></strong></span> : ##ticket.solvedate##<br /><span style="color: #888888;"><strong><span style="text-decoration: underline;">##lang.ticket.solution.type##</span></strong></span> : ##ticket.solution.type##<br /><span style="text-decoration: underline; color: #888888;"><strong>##lang.ticket.solution.description##</strong></span> : ##ticket.solution.description##<br />##ENDIFticket.storestatus##</p>
<p>##FOREACHtimelineitems##</p>
<div class="description b"><br /><strong> [##timelineitems.date##]</strong><br /><span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.timelineitems.author## </span> <span style="color: #000000; font-weight: bold; text-decoration: underline;">##timelineitems.author##</span><br /><span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.timelineitems.description## </span> <span style="color: #000000; font-weight: bold; text-decoration: underline;">##timelineitems.description##</span><br /><span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.timelineitems.date## </span> <span style="color: #000000; font-weight: bold; text-decoration: underline;">##timelineitems.date##</span><br /><span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;">##lang.timelineitems.position## </span><span style="color: #000000; font-weight: bold; text-decoration: underline;"> ##timelineitems.position##</span></div>
<div class="description b"><span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;">##lang.timelineitems.type## </span><span style="color: #000000; font-weight: bold; text-decoration: underline;"> ##timelineitems.type##</span></div>
<div class="description b"><span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;">##lang.timelineitems.typename## </span> <span style="color: #000000; font-weight: bold; text-decoration: underline;">##timelineitems.typename##</span></div>
<p>##ENDFOREACHtimelineitems##</p>
<div class="description b">##lang.ticket.numberoffollowups## : ##ticket.numberoffollowups##</div>
<div class="description b">##lang.ticket.numberoftasks## : ##ticket.numberoftasks##</div>',
], [
'id' => '5',
'notificationtemplates_id' => '12',
'language' => '',
'subject' => '##contract.action## ##contract.entity##',
'content_text' => '##lang.contract.entity## : ##contract.entity##
##FOREACHcontracts##
##lang.contract.name## : ##contract.name##
##lang.contract.number## : ##contract.number##
##lang.contract.time## : ##contract.time##
##IFcontract.type####lang.contract.type## : ##contract.type####ENDIFcontract.type##
##contract.url##
##ENDFOREACHcontracts##',
'content_html' => '<p>##lang.contract.entity## : ##contract.entity##<br />
<br />##FOREACHcontracts##<br />##lang.contract.name## :
##contract.name##<br />
##lang.contract.number## : ##contract.number##<br />
##lang.contract.time## : ##contract.time##<br />
##IFcontract.type####lang.contract.type## : ##contract.type##
##ENDIFcontract.type##<br />
<a href="##contract.url##">
##contract.url##</a><br />
##ENDFOREACHcontracts##</p>',
], [
'id' => '6',
'notificationtemplates_id' => '5',
'language' => '',
'subject' => '##ticket.action## ##ticket.title##',
'content_text' => '##lang.ticket.url## : ##ticket.url##
##lang.ticket.description##
##lang.ticket.title## :##ticket.title##
##lang.ticket.authors## :##IFticket.authors##
##ticket.authors## ##ENDIFticket.authors##
##ELSEticket.authors##--##ENDELSEticket.authors##
##IFticket.category## ##lang.ticket.category## :##ticket.category##
##ENDIFticket.category## ##ELSEticket.category##
##lang.ticket.nocategoryassigned## ##ENDELSEticket.category##
##lang.ticket.content## : ##ticket.content##
##IFticket.itemtype##
##lang.ticket.item.name## : ##ticket.itemtype## - ##ticket.item.name##
##ENDIFticket.itemtype##',
'content_html' => '<div>##lang.ticket.url## : <a href="##ticket.url##">
##ticket.url##</a></div>
<div class="description b">
##lang.ticket.description##</div>
<p><span
style="color: #8b8c8f; font-weight: bold; text-decoration: underline;">
##lang.ticket.title##</span> :##ticket.title##
<br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;">
##lang.ticket.authors##</span>
##IFticket.authors## ##ticket.authors##
##ENDIFticket.authors##
##ELSEticket.authors##--##ENDELSEticket.authors##
<span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;">
</span><br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> </span>
##IFticket.category##<span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;">
##lang.ticket.category## </span> :##ticket.category##
##ENDIFticket.category## ##ELSEticket.category##
##lang.ticket.nocategoryassigned## ##ENDELSEticket.category##
<br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;">
##lang.ticket.content##</span> :
##ticket.content##<br />##IFticket.itemtype##
<span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;">
##lang.ticket.item.name##</span> :
##ticket.itemtype## - ##ticket.item.name##
##ENDIFticket.itemtype##</p>',
], [
'id' => '15',
'notificationtemplates_id' => '15',
'language' => '',
'subject' => '##lang.unicity.action##',
'content_text' => '##lang.unicity.entity## : ##unicity.entity##
##lang.unicity.itemtype## : ##unicity.itemtype##
##lang.unicity.message## : ##unicity.message##
##lang.unicity.action_user## : ##unicity.action_user##
##lang.unicity.action_type## : ##unicity.action_type##
##lang.unicity.date## : ##unicity.date##',
'content_html' => '<p>##lang.unicity.entity## : ##unicity.entity##</p>
<p>##lang.unicity.itemtype## : ##unicity.itemtype##</p>
<p>##lang.unicity.message## : ##unicity.message##</p>
<p>##lang.unicity.action_user## : ##unicity.action_user##</p>
<p>##lang.unicity.action_type## : ##unicity.action_type##</p>
<p>##lang.unicity.date## : ##unicity.date##</p>',
], [
'id' => '7',
'notificationtemplates_id' => '7',
'language' => '',
'subject' => '##ticket.action## ##ticket.title##',
'content_text' => '##FOREACHvalidations##
##IFvalidation.storestatus=2##
##validation.submission.title##
##lang.validation.commentsubmission## : ##validation.commentsubmission##
##ENDIFvalidation.storestatus##
##ELSEvalidation.storestatus## ##validation.answer.title## ##ENDELSEvalidation.storestatus##
##lang.ticket.url## : ##ticket.urlvalidation##
##IFvalidation.status## ##lang.validation.status## : ##validation.status## ##ENDIFvalidation.status##
##IFvalidation.commentvalidation##
##lang.validation.commentvalidation## : ##validation.commentvalidation##
##ENDIFvalidation.commentvalidation##
##ENDFOREACHvalidations##',
'content_html' => '<div>##FOREACHvalidations##</div>
<p>##IFvalidation.storestatus=2##</p>
<div>##validation.submission.title##</div>
<div>##lang.validation.commentsubmission## : ##validation.commentsubmission##</div>
<div>##ENDIFvalidation.storestatus##</div>
<div>##ELSEvalidation.storestatus## ##validation.answer.title## ##ENDELSEvalidation.storestatus##</div>
<div></div>
<div>
<div>##lang.ticket.url## : <a href="##ticket.urlvalidation##"> ##ticket.urlvalidation## </a></div>
</div>
<p>##IFvalidation.status## ##lang.validation.status## : ##validation.status## ##ENDIFvalidation.status##
<br /> ##IFvalidation.commentvalidation##<br /> ##lang.validation.commentvalidation## :
  ##validation.commentvalidation##<br /> ##ENDIFvalidation.commentvalidation##
<br />##ENDFOREACHvalidations##</p>',
], [
'id' => '8',
'notificationtemplates_id' => '6',
'language' => '',
'subject' => '##ticket.action## ##ticket.entity##',
'content_text' => '##lang.ticket.entity## : ##ticket.entity##
##FOREACHtickets##
##lang.ticket.title## : ##ticket.title##
##lang.ticket.status## : ##ticket.status##
##ticket.url##
##ENDFOREACHtickets##',
'content_html' => '<table class="tab_cadre" border="1" cellspacing="2" cellpadding="3">
<tbody>
<tr>
<td style="text-align: left;" width="auto" bgcolor="#cccccc"><span style="font-size: 11px; text-align: left;">##lang.ticket.authors##</span></td>
<td style="text-align: left;" width="auto" bgcolor="#cccccc"><span style="font-size: 11px; text-align: left;">##lang.ticket.title##</span></td>
<td style="text-align: left;" width="auto" bgcolor="#cccccc"><span style="font-size: 11px; text-align: left;">##lang.ticket.priority##</span></td>
<td style="text-align: left;" width="auto" bgcolor="#cccccc"><span style="font-size: 11px; text-align: left;">##lang.ticket.status##</span></td>
<td style="text-align: left;" width="auto" bgcolor="#cccccc"><span style="font-size: 11px; text-align: left;">##lang.ticket.attribution##</span></td>
<td style="text-align: left;" width="auto" bgcolor="#cccccc"><span style="font-size: 11px; text-align: left;">##lang.ticket.creationdate##</span></td>
<td style="text-align: left;" width="auto" bgcolor="#cccccc"><span style="font-size: 11px; text-align: left;">##lang.ticket.content##</span></td>
</tr>
##FOREACHtickets##
<tr>
<td width="auto"><span style="font-size: 11px; text-align: left;">##ticket.authors##</span></td>
<td width="auto"><span style="font-size: 11px; text-align: left;"><a href="##ticket.url##">##ticket.title##</a></span></td>
<td width="auto"><span style="font-size: 11px; text-align: left;">##ticket.priority##</span></td>
<td width="auto"><span style="font-size: 11px; text-align: left;">##ticket.status##</span></td>
<td width="auto"><span style="font-size: 11px; text-align: left;">##IFticket.assigntousers####ticket.assigntousers##<br />##ENDIFticket.assigntousers####IFticket.assigntogroups##<br />##ticket.assigntogroups## ##ENDIFticket.assigntogroups####IFticket.assigntosupplier##<br />##ticket.assigntosupplier## ##ENDIFticket.assigntosupplier##</span></td>
<td width="auto"><span style="font-size: 11px; text-align: left;">##ticket.creationdate##</span></td>
<td width="auto"><span style="font-size: 11px; text-align: left;">##ticket.content##</span></td>
</tr>
##ENDFOREACHtickets##
</tbody>
</table>',
], [
'id' => '9',
'notificationtemplates_id' => '9',
'language' => '',
'subject' => '##consumable.action## ##consumable.entity##',
'content_text' => '##lang.consumable.entity## : ##consumable.entity##
##FOREACHconsumables##
##lang.consumable.item## : ##consumable.item##
##lang.consumable.reference## : ##consumable.reference##
##lang.consumable.remaining## : ##consumable.remaining##
##lang.consumable.stock_target## : ##consumable.stock_target##
##lang.consumable.to_order## : ##consumable.to_order##
##consumable.url##
##ENDFOREACHconsumables##',
'content_html' => '<p>
##lang.consumable.entity## : ##consumable.entity##
<br /> <br />##FOREACHconsumables##
<br />##lang.consumable.item## : ##consumable.item##<br />
<br />##lang.consumable.reference## : ##consumable.reference##<br />
##lang.consumable.remaining## : ##consumable.remaining##<br />
##lang.consumable.stock_target## : ##consumable.stock_target##<br />
##lang.consumable.to_order## : ##consumable.to_order##<br />
<a href="##consumable.url##"> ##consumable.url##</a><br />
##ENDFOREACHconsumables##</p>',
], [
'id' => '10',
'notificationtemplates_id' => '8',
'language' => '',
'subject' => '##cartridge.action## ##cartridge.entity##',
'content_text' => '##lang.cartridge.entity## : ##cartridge.entity##
##FOREACHcartridges##
##lang.cartridge.item## : ##cartridge.item##
##lang.cartridge.reference## : ##cartridge.reference##
##lang.cartridge.remaining## : ##cartridge.remaining##
##lang.cartridge.stock_target## : ##cartridge.stock_target##
##lang.cartridge.to_order## : ##cartridge.to_order##
##cartridge.url##
##ENDFOREACHcartridges##',
'content_html' => '<p>##lang.cartridge.entity## : ##cartridge.entity##
<br /> <br />##FOREACHcartridges##
<br />##lang.cartridge.item## :
##cartridge.item##<br /> <br />
##lang.cartridge.reference## :
##cartridge.reference##<br />
##lang.cartridge.remaining## :
##cartridge.remaining##<br />
##lang.cartridge.stock_target## :
##cartridge.stock_target##<br />
##lang.cartridge.to_order## :
##cartridge.to_order##<br />
<a href="##cartridge.url##">
##cartridge.url##</a><br />
##ENDFOREACHcartridges##</p>',
], [
'id' => '11',
'notificationtemplates_id' => '10',
'language' => '',
'subject' => '##infocom.action## ##infocom.entity##',
'content_text' => '##lang.infocom.entity## : ##infocom.entity##
##FOREACHinfocoms##
##lang.infocom.itemtype## : ##infocom.itemtype##
##lang.infocom.item## : ##infocom.item##
##lang.infocom.expirationdate## : ##infocom.expirationdate##
##infocom.url##
##ENDFOREACHinfocoms##',
'content_html' => '<p>##lang.infocom.entity## : ##infocom.entity##
<br /> <br />##FOREACHinfocoms##
<br />##lang.infocom.itemtype## : ##infocom.itemtype##<br />
##lang.infocom.item## : ##infocom.item##<br /> <br />
##lang.infocom.expirationdate## : ##infocom.expirationdate##
<br /> <a href="##infocom.url##">
##infocom.url##</a><br />
##ENDFOREACHinfocoms##</p>',
], [
'id' => '12',
'notificationtemplates_id' => '11',
'language' => '',
'subject' => '##license.action## ##license.entity##',
'content_text' => '##lang.license.entity## : ##license.entity##
##FOREACHlicenses##
##lang.license.item## : ##license.item##
##lang.license.serial## : ##license.serial##
##lang.license.expirationdate## : ##license.expirationdate##
##license.url##
##ENDFOREACHlicenses##',
'content_html' => '<p>
##lang.license.entity## : ##license.entity##<br />
##FOREACHlicenses##
<br />##lang.license.item## : ##license.item##<br />
##lang.license.serial## : ##license.serial##<br />
##lang.license.expirationdate## : ##license.expirationdate##
<br /> <a href="##license.url##"> ##license.url##
</a><br /> ##ENDFOREACHlicenses##</p>',
], [
'id' => '13',
'notificationtemplates_id' => '13',
'language' => '',
'subject' => '##user.action##',
'content_text' => '##user.realname## ##user.firstname##
##lang.passwordforget.information##
##lang.passwordforget.link## ##user.passwordforgeturl##',
'content_html' => '<p><strong>##user.realname## ##user.firstname##</strong></p>
<p>##lang.passwordforget.information##</p>
<p>##lang.passwordforget.link## <a title="##user.passwordforgeturl##" href="##user.passwordforgeturl##">##user.passwordforgeturl##</a></p>',
], [
'id' => '14',
'notificationtemplates_id' => '14',
'language' => '',
'subject' => '##ticket.action## ##ticket.title##',
'content_text' => '##lang.ticket.title## : ##ticket.title##
##lang.ticket.closedate## : ##ticket.closedate##
##lang.satisfaction.text## ##ticket.urlsatisfaction##',
'content_html' => '<p>##lang.ticket.title## : ##ticket.title##</p>
<p>##lang.ticket.closedate## : ##ticket.closedate##</p>
<p>##lang.satisfaction.text## <a href="##ticket.urlsatisfaction##">##ticket.urlsatisfaction##</a></p>',
], [
'id' => '16',
'notificationtemplates_id' => '16',
'language' => '',
'subject' => '##crontask.action##',
'content_text' => '##lang.crontask.warning##
##FOREACHcrontasks##
##crontask.name## : ##crontask.description##
##ENDFOREACHcrontasks##',
'content_html' => '<p>##lang.crontask.warning##</p>
<p>##FOREACHcrontasks## <br /><a href="##crontask.url##">##crontask.name##</a> : ##crontask.description##<br /> <br />##ENDFOREACHcrontasks##</p>',
], [
'id' => '17',
'notificationtemplates_id' => '17',
'language' => '',
'subject' => '##problem.action## ##problem.title##',
'content_text' => '##IFproblem.storestatus=5##
##lang.problem.url## : ##problem.urlapprove##
##lang.problem.solvedate## : ##problem.solvedate##
##lang.problem.solution.type## : ##problem.solution.type##
##lang.problem.solution.description## : ##problem.solution.description## ##ENDIFproblem.storestatus##
##ELSEproblem.storestatus## ##lang.problem.url## : ##problem.url## ##ENDELSEproblem.storestatus##
##lang.problem.description##
##lang.problem.title## :##problem.title##
##lang.problem.authors## :##IFproblem.authors## ##problem.authors## ##ENDIFproblem.authors## ##ELSEproblem.authors##--##ENDELSEproblem.authors##
##lang.problem.creationdate## :##problem.creationdate##
##IFproblem.assigntousers## ##lang.problem.assigntousers## : ##problem.assigntousers## ##ENDIFproblem.assigntousers##
##lang.problem.status## : ##problem.status##
##IFproblem.assigntogroups## ##lang.problem.assigntogroups## : ##problem.assigntogroups## ##ENDIFproblem.assigntogroups##
##lang.problem.urgency## : ##problem.urgency##
##lang.problem.impact## : ##problem.impact##
##lang.problem.priority## : ##problem.priority##
##IFproblem.category## ##lang.problem.category## :##problem.category## ##ENDIFproblem.category## ##ELSEproblem.category## ##lang.problem.nocategoryassigned## ##ENDELSEproblem.category##
##lang.problem.content## : ##problem.content##
##IFproblem.storestatus=6##
##lang.problem.solvedate## : ##problem.solvedate##
##lang.problem.solution.type## : ##problem.solution.type##
##lang.problem.solution.description## : ##problem.solution.description##
##ENDIFproblem.storestatus##
##lang.problem.numberoffollowups## : ##problem.numberoffollowups##
##FOREACHfollowups##
[##followup.date##] ##lang.followup.isprivate## : ##followup.isprivate##
##lang.followup.author## ##followup.author##
##lang.followup.description## ##followup.description##
##lang.followup.date## ##followup.date##
##lang.followup.requesttype## ##followup.requesttype##
##ENDFOREACHfollowups##
##lang.problem.numberoftickets## : ##problem.numberoftickets##
##FOREACHtickets##
[##ticket.date##] ##lang.problem.title## : ##ticket.title##
##lang.problem.content## ##ticket.content##
##ENDFOREACHtickets##
##lang.problem.numberoftasks## : ##problem.numberoftasks##
##FOREACHtasks##
[##task.date##]
##lang.task.author## ##task.author##
##lang.task.description## ##task.description##
##lang.task.time## ##task.time##
##lang.task.category## ##task.category##
##ENDFOREACHtasks##
',
'content_html' => '<p>##IFproblem.storestatus=5##</p>
<div>##lang.problem.url## : <a href="##problem.urlapprove##">##problem.urlapprove##</a></div>
<div><span style="color: #888888;"><strong><span style="text-decoration: underline;">##lang.problem.solvedate##</span></strong></span> : ##problem.solvedate##<br /><span style="text-decoration: underline; color: #888888;"><strong>##lang.problem.solution.type##</strong></span> : ##problem.solution.type##<br /><span style="text-decoration: underline; color: #888888;"><strong>##lang.problem.solution.description##</strong></span> : ##problem.solution.description## ##ENDIFproblem.storestatus##</div>
<div>##ELSEproblem.storestatus## ##lang.problem.url## : <a href="##problem.url##">##problem.url##</a> ##ENDELSEproblem.storestatus##</div>
<p class="description b"><strong>##lang.problem.description##</strong></p>
<p><span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.problem.title##</span> :##problem.title## <br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.problem.authors##</span> :##IFproblem.authors## ##problem.authors## ##ENDIFproblem.authors## ##ELSEproblem.authors##--##ENDELSEproblem.authors## <br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.problem.creationdate##</span> :##problem.creationdate## <br /> ##IFproblem.assigntousers## <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.problem.assigntousers##</span> : ##problem.assigntousers## ##ENDIFproblem.assigntousers##<br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;">##lang.problem.status## </span> : ##problem.status##<br /> ##IFproblem.assigntogroups## <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.problem.assigntogroups##</span> : ##problem.assigntogroups## ##ENDIFproblem.assigntogroups##<br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.problem.urgency##</span> : ##problem.urgency##<br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.problem.impact##</span> : ##problem.impact##<br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.problem.priority##</span> : ##problem.priority## <br />##IFproblem.category##<span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;">##lang.problem.category## </span> :##problem.category## ##ENDIFproblem.category## ##ELSEproblem.category## ##lang.problem.nocategoryassigned## ##ENDELSEproblem.category## <br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.problem.content##</span> : ##problem.content##</p>
<p>##IFproblem.storestatus=6##<br /><span style="text-decoration: underline;"><strong><span style="color: #888888;">##lang.problem.solvedate##</span></strong></span> : ##problem.solvedate##<br /><span style="color: #888888;"><strong><span style="text-decoration: underline;">##lang.problem.solution.type##</span></strong></span> : ##problem.solution.type##<br /><span style="text-decoration: underline; color: #888888;"><strong>##lang.problem.solution.description##</strong></span> : ##problem.solution.description##<br />##ENDIFproblem.storestatus##</p>
<div class="description b">##lang.problem.numberoffollowups## : ##problem.numberoffollowups##</div>
<p>##FOREACHfollowups##</p>
<div class="description b"><br /> <strong> [##followup.date##] <em>##lang.followup.isprivate## : ##followup.isprivate## </em></strong><br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.followup.author## </span> ##followup.author##<br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.followup.description## </span> ##followup.description##<br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.followup.date## </span> ##followup.date##<br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.followup.requesttype## </span> ##followup.requesttype##</div>
<p>##ENDFOREACHfollowups##</p>
<div class="description b">##lang.problem.numberoftickets## : ##problem.numberoftickets##</div>
<p>##FOREACHtickets##</p>
<div><strong> [##ticket.date##] <em>##lang.problem.title## : <a href="##ticket.url##">##ticket.title## </a></em></strong><br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> </span><span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;">##lang.problem.content## </span> ##ticket.content##
<p>##ENDFOREACHtickets##</p>
<div class="description b">##lang.problem.numberoftasks## : ##problem.numberoftasks##</div>
<p>##FOREACHtasks##</p>
<div class="description b"><strong>[##task.date##] </strong><br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.task.author##</span> ##task.author##<br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.task.description##</span> ##task.description##<br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.task.time##</span> ##task.time##<br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.task.category##</span> ##task.category##</div>
<p>##ENDFOREACHtasks##</p>
</div>',
], [
'id' => '18',
'notificationtemplates_id' => '18',
'language' => '',
'subject' => '##recall.action##: ##recall.item.name##',
'content_text' => '##recall.action##: ##recall.item.name##
##recall.item.content##
##lang.recall.planning.begin##: ##recall.planning.begin##
##lang.recall.planning.end##: ##recall.planning.end##
##lang.recall.planning.state##: ##recall.planning.state##
##lang.recall.item.private##: ##recall.item.private##',
'content_html' => '<p>##recall.action##: <a href="##recall.item.url##">##recall.item.name##</a></p>
<p>##recall.item.content##</p>
<p>##lang.recall.planning.begin##: ##recall.planning.begin##<br />##lang.recall.planning.end##: ##recall.planning.end##<br />##lang.recall.planning.state##: ##recall.planning.state##<br />##lang.recall.item.private##: ##recall.item.private##<br /><br /></p>
<p><br /><br /></p>',
], [
'id' => '19',
'notificationtemplates_id' => '19',
'language' => '',
'subject' => '##change.action## ##change.title##',
'content_text' => '##IFchange.storestatus=5##
##lang.change.url## : ##change.urlapprove##
##lang.change.solvedate## : ##change.solvedate##
##lang.change.solution.type## : ##change.solution.type##
##lang.change.solution.description## : ##change.solution.description## ##ENDIFchange.storestatus##
##ELSEchange.storestatus## ##lang.change.url## : ##change.url## ##ENDELSEchange.storestatus##
##lang.change.description##
##lang.change.title## :##change.title##
##lang.change.authors## :##IFchange.authors## ##change.authors## ##ENDIFchange.authors## ##ELSEchange.authors##--##ENDELSEchange.authors##
##lang.change.creationdate## :##change.creationdate##
##IFchange.assigntousers## ##lang.change.assigntousers## : ##change.assigntousers## ##ENDIFchange.assigntousers##
##lang.change.status## : ##change.status##
##IFchange.assigntogroups## ##lang.change.assigntogroups## : ##change.assigntogroups## ##ENDIFchange.assigntogroups##
##lang.change.urgency## : ##change.urgency##
##lang.change.impact## : ##change.impact##
##lang.change.priority## : ##change.priority##
##IFchange.category## ##lang.change.category## :##change.category## ##ENDIFchange.category## ##ELSEchange.category## ##lang.change.nocategoryassigned## ##ENDELSEchange.category##
##lang.change.content## : ##change.content##
##IFchange.storestatus=6##
##lang.change.solvedate## : ##change.solvedate##
##lang.change.solution.type## : ##change.solution.type##
##lang.change.solution.description## : ##change.solution.description##
##ENDIFchange.storestatus##
##lang.change.numberoffollowups## : ##change.numberoffollowups##
##FOREACHfollowups##
[##followup.date##] ##lang.followup.isprivate## : ##followup.isprivate##
##lang.followup.author## ##followup.author##
##lang.followup.description## ##followup.description##
##lang.followup.date## ##followup.date##
##lang.followup.requesttype## ##followup.requesttype##
##ENDFOREACHfollowups##
##lang.change.numberofproblems## : ##change.numberofproblems##
##FOREACHproblems##
[##problem.date##] ##lang.change.title## : ##problem.title##
##lang.change.content## ##problem.content##
##ENDFOREACHproblems##
##lang.change.numberoftasks## : ##change.numberoftasks##
##FOREACHtasks##
[##task.date##]
##lang.task.author## ##task.author##
##lang.task.description## ##task.description##
##lang.task.time## ##task.time##
##lang.task.category## ##task.category##
##ENDFOREACHtasks##
',
'content_html' => '<p>##IFchange.storestatus=5##</p>
<div>##lang.change.url## : <a href="##change.urlapprove##">##change.urlapprove##</a></div>
<div><span style="color: #888888;"><strong><span style="text-decoration: underline;">##lang.change.solvedate##</span></strong></span> : ##change.solvedate##<br /><span style="text-decoration: underline; color: #888888;"><strong>##lang.change.solution.type##</strong></span> : ##change.solution.type##<br /><span style="text-decoration: underline; color: #888888;"><strong>##lang.change.solution.description##</strong></span> : ##change.solution.description## ##ENDIFchange.storestatus##</div>
<div>##ELSEchange.storestatus## ##lang.change.url## : <a href="##change.url##">##change.url##</a> ##ENDELSEchange.storestatus##</div>
<p class="description b"><strong>##lang.change.description##</strong></p>
<p><span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.change.title##</span> :##change.title## <br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.change.authors##</span> :##IFchange.authors## ##change.authors## ##ENDIFchange.authors## ##ELSEchange.authors##--##ENDELSEchange.authors## <br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.change.creationdate##</span> :##change.creationdate## <br /> ##IFchange.assigntousers## <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.change.assigntousers##</span> : ##change.assigntousers## ##ENDIFchange.assigntousers##<br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;">##lang.change.status## </span> : ##change.status##<br /> ##IFchange.assigntogroups## <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.change.assigntogroups##</span> : ##change.assigntogroups## ##ENDIFchange.assigntogroups##<br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.change.urgency##</span> : ##change.urgency##<br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.change.impact##</span> : ##change.impact##<br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.change.priority##</span> : ##change.priority## <br />##IFchange.category##<span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;">##lang.change.category## </span> :##change.category## ##ENDIFchange.category## ##ELSEchange.category## ##lang.change.nocategoryassigned## ##ENDELSEchange.category## <br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.change.content##</span> : ##change.content##</p>
<p>##IFchange.storestatus=6##<br /><span style="text-decoration: underline;"><strong><span style="color: #888888;">##lang.change.solvedate##</span></strong></span> : ##change.solvedate##<br /><span style="color: #888888;"><strong><span style="text-decoration: underline;">##lang.change.solution.type##</span></strong></span> : ##change.solution.type##<br /><span style="text-decoration: underline; color: #888888;"><strong>##lang.change.solution.description##</strong></span> : ##change.solution.description##<br />##ENDIFchange.storestatus##</p>
<div class="description b">##lang.change.numberoffollowups## : ##change.numberoffollowups##</div>
<p>##FOREACHfollowups##</p>
<div class="description b"><br /> <strong> [##followup.date##] <em>##lang.followup.isprivate## : ##followup.isprivate## </em></strong><br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.followup.author## </span> ##followup.author##<br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.followup.description## </span> ##followup.description##<br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.followup.date## </span> ##followup.date##<br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.followup.requesttype## </span> ##followup.requesttype##</div>
<p>##ENDFOREACHfollowups##</p>
<div class="description b">##lang.change.numberofproblems## : ##change.numberofproblems##</div>
<p>##FOREACHproblems##</p>
<div><strong> [##problem.date##] <em>##lang.change.title## : <a href="##problem.url##">##problem.title## </a></em></strong><br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> </span><span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;">##lang.change.content## </span> ##problem.content##
<p>##ENDFOREACHproblems##</p>
<div class="description b">##lang.change.numberoftasks## : ##change.numberoftasks##</div>
<p>##FOREACHtasks##</p>
<div class="description b"><strong>[##task.date##] </strong><br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.task.author##</span> ##task.author##<br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.task.description##</span> ##task.description##<br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.task.time##</span> ##task.time##<br /> <span style="color: #8b8c8f; font-weight: bold; text-decoration: underline;"> ##lang.task.category##</span> ##task.category##</div>
<p>##ENDFOREACHtasks##</p>
</div>',
], [
'id' => '20',
'notificationtemplates_id' => '20',
'language' => '',
'subject' => '##mailcollector.action##',
'content_text' => '##FOREACHmailcollectors##
##lang.mailcollector.name## : ##mailcollector.name##
##lang.mailcollector.errors## : ##mailcollector.errors##
##mailcollector.url##
##ENDFOREACHmailcollectors##',
'content_html' => '<p>##FOREACHmailcollectors##<br />##lang.mailcollector.name## : ##mailcollector.name##<br /> ##lang.mailcollector.errors## : ##mailcollector.errors##<br /><a href="##mailcollector.url##">##mailcollector.url##</a><br /> ##ENDFOREACHmailcollectors##</p>
<p></p>',
], [
'id' => '21',
'notificationtemplates_id' => '21',
'language' => '',
'subject' => '##project.action## ##project.name## ##project.code##',
'content_text' => '##lang.project.url## : ##project.url##
##lang.project.description##
##lang.project.name## : ##project.name##
##lang.project.code## : ##project.code##
##lang.project.manager## : ##project.manager##
##lang.project.managergroup## : ##project.managergroup##
##lang.project.creationdate## : ##project.creationdate##
##lang.project.priority## : ##project.priority##
##lang.project.state## : ##project.state##
##lang.project.type## : ##project.type##
##lang.project.description## : ##project.description##
##lang.project.numberoftasks## : ##project.numberoftasks##
##FOREACHtasks##
[##task.creationdate##]
##lang.task.name## : ##task.name##
##lang.task.state## : ##task.state##
##lang.task.type## : ##task.type##
##lang.task.percent## : ##task.percent##
##lang.task.description## : ##task.description##
##ENDFOREACHtasks##',
'content_html' => '<p>##lang.project.url## : <a href="##project.url##">##project.url##</a></p>
<p><strong>##lang.project.description##</strong></p>
<p>##lang.project.name## : ##project.name##<br />##lang.project.code## : ##project.code##<br /> ##lang.project.manager## : ##project.manager##<br />##lang.project.managergroup## : ##project.managergroup##<br /> ##lang.project.creationdate## : ##project.creationdate##<br />##lang.project.priority## : ##project.priority## <br />##lang.project.state## : ##project.state##<br />##lang.project.type## : ##project.type##<br />##lang.project.description## : ##project.description##</p>
<p>##lang.project.numberoftasks## : ##project.numberoftasks##</p>
<div>
<p>##FOREACHtasks##</p>
<div><strong>[##task.creationdate##] </strong><br /> ##lang.task.name## : ##task.name##<br />##lang.task.state## : ##task.state##<br />##lang.task.type## : ##task.type##<br />##lang.task.percent## : ##task.percent##<br />##lang.task.description## : ##task.description##</div>
<p>##ENDFOREACHtasks##</p>
</div>',
], [
'id' => '22',
'notificationtemplates_id' => '22',
'language' => '',
'subject' => '##projecttask.action## ##projecttask.name##',
'content_text' => '##lang.projecttask.url## : ##projecttask.url##
##lang.projecttask.description##
##lang.projecttask.name## : ##projecttask.name##
##lang.projecttask.project## : ##projecttask.project##
##lang.projecttask.creationdate## : ##projecttask.creationdate##
##lang.projecttask.state## : ##projecttask.state##
##lang.projecttask.type## : ##projecttask.type##
##lang.projecttask.description## : ##projecttask.description##
##lang.projecttask.numberoftasks## : ##projecttask.numberoftasks##
##FOREACHtasks##
[##task.creationdate##]
##lang.task.name## : ##task.name##
##lang.task.state## : ##task.state##
##lang.task.type## : ##task.type##
##lang.task.percent## : ##task.percent##
##lang.task.description## : ##task.description##
##ENDFOREACHtasks##',
'content_html' => '<p>##lang.projecttask.url## : <a href="##projecttask.url##">##projecttask.url##</a></p>
<p><strong>##lang.projecttask.description##</strong></p>
<p>##lang.projecttask.name## : ##projecttask.name##<br />##lang.projecttask.project## : <a href="##projecttask.projecturl##">##projecttask.project##</a><br />##lang.projecttask.creationdate## : ##projecttask.creationdate##<br />##lang.projecttask.state## : ##projecttask.state##<br />##lang.projecttask.type## : ##projecttask.type##<br />##lang.projecttask.description## : ##projecttask.description##</p>
<p>##lang.projecttask.numberoftasks## : ##projecttask.numberoftasks##</p>
<div>
<p>##FOREACHtasks##</p>
<div><strong>[##task.creationdate##] </strong><br />##lang.task.name## : ##task.name##<br />##lang.task.state## : ##task.state##<br />##lang.task.type## : ##task.type##<br />##lang.task.percent## : ##task.percent##<br />##lang.task.description## : ##task.description##</div>
<p>##ENDFOREACHtasks##</p>
</div>',
], [
'id' => '23',
'notificationtemplates_id' => '23',
'language' => '',
'subject' => '##objectlock.action##',
'content_text' => '##objectlock.type## ###objectlock.id## - ##objectlock.name##
##lang.objectlock.url##
##objectlock.url##
##lang.objectlock.date_mod##
##objectlock.date_mod##
Hello ##objectlock.lockedby.firstname##,
Could go to this item and unlock it for me?
Thank you,
Regards,
##objectlock.requester.firstname##',
'content_html' => '<table>
<tbody>
<tr><th colspan="2"><a href="##objectlock.url##">##objectlock.type## ###objectlock.id## - ##objectlock.name##</a></th></tr>
<tr>
<td>##lang.objectlock.url##</td>
<td>##objectlock.url##</td>
</tr>
<tr>
<td>##lang.objectlock.date_mod##</td>
<td>##objectlock.date_mod##</td>
</tr>
</tbody>
</table>
<p><span style="font-size: small;">Hello ##objectlock.lockedby.firstname##,<br />Could go to this item and unlock it for me?<br />Thank you,<br />Regards,<br />##objectlock.requester.firstname## ##objectlock.requester.lastname##</span></p>',
], [
'id' => '24',
'notificationtemplates_id' => '24',
'language' => '',
'subject' => '##savedsearch.action## ##savedsearch.name##',
'content_text' => '##savedsearch.type## ###savedsearch.id## - ##savedsearch.name##
##savedsearch.message##
##lang.savedsearch.url##
##savedsearch.url##
Regards,',
'content_html' => '<table>
<tbody>
<tr><th colspan="2"><a href="##savedsearch.url##">##savedsearch.type## ###savedsearch.id## - ##savedsearch.name##</a></th></tr>
<tr><td colspan="2"><a href="##savedsearch.url##">##savedsearch.message##</a></td></tr>
<tr>
<td>##lang.savedsearch.url##</td>
<td>##savedsearch.url##</td>
</tr>
</tbody>
</table>
<p><span style="font-size: small;">Hello <br />Regards,</span></p>',
], [
'id' => '25',
'notificationtemplates_id' => '25',
'language' => '',
'subject' => '##certificate.action## ##certificate.name##',
'content_text' => '##lang.certificate.entity## : ##certificate.entity##
##lang.certificate.serial## : ##certificate.serial##
##lang.certificate.expirationdate## : ##certificate.expirationdate##
##certificate.url##',
'content_html' => '<p>
##lang.certificate.entity## : ##certificate.entity##<br />
<br />##lang.certificate.name## : ##certificate.name##<br />
##lang.certificate.serial## : ##certificate.serial##<br />
##lang.certificate.expirationdate## : ##certificate.expirationdate##
<br /> <a href="##certificate.url##"> ##certificate.url##
</a><br />
</p>',
], [
'id' => '26',
'notificationtemplates_id' => '26',
'language' => '',
'subject' => '##domain.action## : ##domain.name##',
'content_text' => '##lang.domain.entity## :##domain.entity##
##lang.domain.name## : ##domain.name## - ##lang.domain.dateexpiration## : ##domain.dateexpiration##',
'content_html' => '<p>##lang.domain.entity## :##domain.entity##<br /> <br />
##lang.domain.name## : ##domain.name## - ##lang.domain.dateexpiration## : ##domain.dateexpiration##<br />
</p>',
], [
'id' => '27',
'notificationtemplates_id' => '27',
'language' => '',
'subject' => '##user.action##',
'content_text' => '##user.realname## ##user.firstname##,
##IFuser.password.has_expired=1##
##lang.password.has_expired.information##
##ENDIFuser.password.has_expired##
##ELSEuser.password.has_expired##
##lang.password.expires_soon.information##
##ENDELSEuser.password.has_expired##
##lang.user.password.expiration.date##: ##user.password.expiration.date##
##IFuser.account.lock.date##
##lang.user.account.lock.date##: ##user.account.lock.date##
##ENDIFuser.account.lock.date##
##password.update.link## ##user.password.update.url##',
'content_html' => '<p><strong>##user.realname## ##user.firstname##</strong></p>
##IFuser.password.has_expired=1##
<p>##lang.password.has_expired.information##</p>
##ENDIFuser.password.has_expired##
##ELSEuser.password.has_expired##
<p>##lang.password.expires_soon.information##</p>
##ENDELSEuser.password.has_expired##
<p>##lang.user.password.expiration.date##: ##user.password.expiration.date##</p>
##IFuser.account.lock.date##
<p>##lang.user.account.lock.date##: ##user.account.lock.date##</p>
##ENDIFuser.account.lock.date##
<p>##lang.password.update.link## <a href="##user.password.update.url##">##user.password.update.url##</a></p>',
], [
'id' => '28',
'notificationtemplates_id' => '28',
'language' => '',
'subject' => '##lang.plugins_updates_available##',
'content_text' => '##lang.plugins_updates_available##
##FOREACHplugins##
##plugin.name## :##plugin.old_version## -> ##plugin.version##
##ENDFOREACHplugins##',
'content_html' => '<p>##lang.plugins_updates_available##</p>
<ul>##FOREACHplugins##
<li>##plugin.name## :##plugin.old_version## -> ##plugin.version##</li>
##ENDFOREACHplugins##</ul>'
],
];
$tables['glpi_profilerights'] = [
[
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'computer',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'monitor',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'software',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'networking',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'internet',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'printer',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'peripheral',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'cartridge',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'consumable',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'phone',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'queuednotification',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'contact_enterprise',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'document',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'contract',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'infocom',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'knowbase',
'rights' => KnowbaseItem::READFAQ,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'reservation',
'rights' => ReservationItem::RESERVEANITEM,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'reports',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'dropdown',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'device',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'typedoc',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'link',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'config',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'rule_ticket',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'rule_import',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'rule_location',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'rule_ldap',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'rule_softwarecategories',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'search_config',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'location',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'domain',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'profile',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'user',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'group',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'entity',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'transfer',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'logs',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'reminder_public',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'rssfeed_public',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'bookmark_public',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'backup',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'ticket',
'rights' => READ | CREATE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'followup',
'rights' => READ | CREATE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'task',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'planning',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'state',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'taskcategory',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'statistic',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'password_update',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'show_group_hardware',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'rule_dictionnary_software',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'rule_dictionnary_dropdown',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'budget',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'notification',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'rule_mailcollector',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'solutiontemplate',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'itilfollowuptemplate',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'calendar',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'slm',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'rule_dictionnary_printer',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'problem',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'cable_management',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'knowbasecategory',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'itilcategory',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'itiltemplate',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'ticketrecurrent',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'ticketcost',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'changevalidation',
'rights' => CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'ticketvalidation',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'computer',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'monitor',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'software',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'networking',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'internet',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'printer',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'peripheral',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'cartridge',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'consumable',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'phone',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'queuednotification',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'contact_enterprise',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'document',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'contract',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'infocom',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'knowbase',
'rights' => READ | KnowbaseItem::READFAQ | KnowbaseItem::COMMENTS,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'reservation',
'rights' => READ | ReservationItem::RESERVEANITEM,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'reports',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'dropdown',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'device',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'typedoc',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'link',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'config',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'rule_ticket',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'rule_import',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'rule_location',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'rule_ldap',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'rule_softwarecategories',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'search_config',
'rights' => DisplayPreference::PERSONAL,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'location',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'domain',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'profile',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'user',
'rights' => READ | User::READAUTHENT,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'group',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'entity',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'transfer',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'logs',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'reminder_public',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'rssfeed_public',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'bookmark_public',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'backup',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'ticket',
'rights' => READ | CREATE | DELETE | PURGE | Ticket::READALL | Ticket::READASSIGN | Ticket::OWN | Ticket::SURVEY,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'followup',
'rights' => READ | CREATE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'task',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'projecttask',
'rights' => READ | ProjectTask::UPDATEMY,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'projecttask',
'rights' => READ | ProjectTask::UPDATEMY,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'planning',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'state',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'taskcategory',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'statistic',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'password_update',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'show_group_hardware',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'rule_dictionnary_software',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'rule_dictionnary_dropdown',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'budget',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'notification',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'rule_mailcollector',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'solutiontemplate',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'itilfollowuptemplate',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'solutiontemplate',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'itilfollowuptemplate',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'calendar',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'slm',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'rule_dictionnary_printer',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'problem',
'rights' => Change::READMY | READNOTE | Change::READALL,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'cable_management',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'knowbasecategory',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'itilcategory',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'itiltemplate',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'ticketrecurrent',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'ticketcost',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'changevalidation',
'rights' => CREATE | PURGE | CommonITILValidation::VALIDATE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'changevalidation',
'rights' => CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'ticketvalidation',
'rights' => PURGE | TicketValidation::CREATEREQUEST | TicketValidation::CREATEINCIDENT | TicketValidation::VALIDATEREQUEST | TicketValidation::VALIDATEINCIDENT,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'computer',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'monitor',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'software',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'networking',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'internet',
'rights' => ALLSTANDARDRIGHT,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'printer',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'peripheral',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'cartridge',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'consumable',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'phone',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'queuednotification',
'rights' => ALLSTANDARDRIGHT,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'contact_enterprise',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'document',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'contract',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'infocom',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'knowbase',
'rights' => READ | UPDATE | CREATE | PURGE | KnowbaseItem::READFAQ | KnowbaseItem::PUBLISHFAQ | KnowbaseItem::COMMENTS,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'reservation',
'rights' => READ | UPDATE | CREATE | DELETE | PURGE | ReservationItem::RESERVEANITEM,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'reports',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'dropdown',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'device',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'typedoc',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'link',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'config',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'rule_ticket',
'rights' => READ | UPDATE | CREATE | PURGE | RuleTicket::PARENT,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'rule_import',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'rule_location',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'rule_ldap',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'rule_softwarecategories',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'search_config',
'rights' => DisplayPreference::PERSONAL | DisplayPreference::GENERAL,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'location',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'domain',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'profile',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'user',
'rights' => ALLSTANDARDRIGHT | User::IMPORTEXTAUTHUSERS | User::READAUTHENT | User::UPDATEAUTHENT,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'group',
'rights' => READ | UPDATE | CREATE | PURGE | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'entity',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'transfer',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'logs',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'reminder_public',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'rssfeed_public',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'bookmark_public',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'backup',
'rights' => '1024',
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'ticket',
'rights' => ALLSTANDARDRIGHT | Ticket::READALL | Ticket::READGROUP | Ticket::READASSIGN | Ticket::ASSIGN
| Ticket::STEAL | Ticket::OWN | Ticket::CHANGEPRIORITY | Ticket::SURVEY,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'followup',
'rights' => READ | UPDATE | CREATE | PURGE | ITILFollowup::UPDATEALL | ITILFollowup::ADDGROUPTICKET
| ITILFollowup::ADDALLTICKET | ITILFollowup::SEEPRIVATE | ITILFollowup::ADD_AS_OBSERVER,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'task',
'rights' => CommonITILTask::SEEPUBLIC | PURGE | CommonITILTask::UPDATEALL
| CommonITILTask::ADDALLITEM | CommonITILTask::SEEPRIVATE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'projecttask',
'rights' => ProjectTask::READMY | ProjectTask::UPDATEMY | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'projecttask',
'rights' => ProjectTask::READMY | ProjectTask::UPDATEMY | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'projecttask',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'planning',
'rights' => READ | Planning::READGROUP | Planning::READALL,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'taskcategory',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'cable_management',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'statistic',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'password_update',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'show_group_hardware',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'rule_dictionnary_software',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'rule_dictionnary_dropdown',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'budget',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'notification',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'rule_mailcollector',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'solutiontemplate',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'itilfollowuptemplate',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'solutiontemplate',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'itilfollowuptemplate',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'calendar',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'slm',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'rule_dictionnary_printer',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'problem',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE | Problem::READALL,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'knowbasecategory',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'itilcategory',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'itiltemplate',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'ticketrecurrent',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'ticketcost',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'changevalidation',
'rights' => CREATE | PURGE | CommonITILValidation::VALIDATE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'changevalidation',
'rights' => CREATE | PURGE | CommonITILValidation::VALIDATE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'ticketvalidation',
'rights' => PURGE | TicketValidation::CREATEREQUEST | TicketValidation::CREATEINCIDENT
| TicketValidation::VALIDATEREQUEST | TicketValidation::VALIDATEINCIDENT,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'computer',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE | UNLOCK,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'monitor',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE | UNLOCK,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'software',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE | UNLOCK,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'networking',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE | UNLOCK,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'internet',
'rights' => ALLSTANDARDRIGHT | UNLOCK,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'printer',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE | UNLOCK,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'peripheral',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE | UNLOCK,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'cartridge',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE | UNLOCK,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'consumable',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE | UNLOCK,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'phone',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE | UNLOCK,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'contact_enterprise',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE | UNLOCK,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'document',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE | UNLOCK,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'contract',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE | UNLOCK,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'infocom',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'knowbase',
'rights' => READ | UPDATE | CREATE | PURGE | KnowbaseItem::KNOWBASEADMIN | KnowbaseItem::READFAQ
| KnowbaseItem::PUBLISHFAQ | KnowbaseItem::COMMENTS,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'reservation',
'rights' => READ | UPDATE | CREATE | DELETE | PURGE | ReservationItem::RESERVEANITEM,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'reports',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'dropdown',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'device',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'typedoc',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'link',
'rights' => ALLSTANDARDRIGHT | UNLOCK,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'config',
'rights' => READ | UPDATE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'rule_ticket',
'rights' => READ | UPDATE | CREATE | PURGE | RuleTicket::PARENT,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'rule_import',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'rule_location',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'rule_ldap',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'rule_softwarecategories',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'search_config',
'rights' => DisplayPreference::PERSONAL | DisplayPreference::GENERAL,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'location',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'domain',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'profile',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'user',
'rights' => ALLSTANDARDRIGHT | UNLOCK | User::IMPORTEXTAUTHUSERS | User::READAUTHENT | User::UPDATEAUTHENT,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'group',
'rights' => READ | UPDATE | CREATE | PURGE | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'entity',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE | UNLOCK | Entity::READHELPDESK | Entity::UPDATEHELPDESK,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'transfer',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'logs',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'reminder_public',
'rights' => ALLSTANDARDRIGHT | UNLOCK,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'rssfeed_public',
'rights' => ALLSTANDARDRIGHT | UNLOCK,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'bookmark_public',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'backup',
'rights' => '1045',
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'ticket',
'rights' => ALLSTANDARDRIGHT | Ticket::READALL | Ticket::READGROUP | Ticket::READASSIGN | Ticket::ASSIGN
| Ticket::STEAL | Ticket::OWN | Ticket::CHANGEPRIORITY | Ticket::SURVEY,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'followup',
'rights' => READ | UPDATE | CREATE | PURGE | ITILFollowup::UPDATEALL | ITILFollowup::ADDGROUPTICKET
| ITILFollowup::ADDALLTICKET | ITILFollowup::SEEPRIVATE | ITILFollowup::ADD_AS_OBSERVER,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'task',
'rights' => CommonITILTask::SEEPUBLIC | PURGE | CommonITILTask::UPDATEALL
| CommonITILTask::ADDALLITEM | CommonITILTask::SEEPRIVATE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'project',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE | Project::READALL,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'projecttask',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'projecttask',
'rights' => READ | ProjectTask::UPDATEMY,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'planning',
'rights' => READ | Planning::READGROUP | Planning::READALL,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'taskcategory',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'cable_management',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'statistic',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'password_update',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'show_group_hardware',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'rule_dictionnary_software',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'rule_dictionnary_dropdown',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'budget',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'notification',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'rule_mailcollector',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'solutiontemplate',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'itilfollowuptemplate',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'solutiontemplate',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'itilfollowuptemplate',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'calendar',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'slm',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'rule_dictionnary_printer',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'problem',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE | Problem::READALL,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'knowbasecategory',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'itilcategory',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'itiltemplate',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'ticketrecurrent',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'ticketcost',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'change',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE | Change::READALL,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'changevalidation',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'ticketvalidation',
'rights' => PURGE | TicketValidation::CREATEREQUEST | TicketValidation::CREATEINCIDENT | TicketValidation::VALIDATEREQUEST | TicketValidation::VALIDATEINCIDENT,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'computer',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'monitor',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'software',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'networking',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'internet',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'printer',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'peripheral',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'cartridge',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'consumable',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'phone',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'queuednotification',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'contact_enterprise',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'document',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'contract',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'infocom',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'knowbase',
'rights' => KnowbaseItem::READFAQ | KnowbaseItem::COMMENTS,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'reservation',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'reports',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'dropdown',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'device',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'typedoc',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'link',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'config',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'rule_ticket',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'rule_import',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'rule_location',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'rule_ldap',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'rule_softwarecategories',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'search_config',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'location',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'domain',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'profile',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'user',
'rights' => READ | User::IMPORTEXTAUTHUSERS,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'group',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'entity',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'transfer',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'logs',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'reminder_public',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'rssfeed_public',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'bookmark_public',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'backup',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'ticket',
'rights' => Ticket::READMY | UPDATE | CREATE | Ticket::READALL | Ticket::ASSIGN | Ticket::SURVEY,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'followup',
'rights' => ITILFollowup::SEEPUBLIC | ITILFollowup::UPDATEMY | ITILFollowup::ADDMYTICKET
| ITILFollowup::ADDALLTICKET | ITILFollowup::SEEPRIVATE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'task',
'rights' => READ | CommonITILTask::SEEPRIVATE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'project',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE | Project::READALL,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'project',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE | Project::READALL,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'project',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE | Project::READALL,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'planning',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'taskcategory',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'cable_management',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'statistic',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'password_update',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'show_group_hardware',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'rule_dictionnary_software',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'rule_dictionnary_dropdown',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'budget',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'notification',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'rule_mailcollector',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'state',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'state',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'calendar',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'slm',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'rule_dictionnary_printer',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'problem',
'rights' => Problem::READALL,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'knowbasecategory',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'itilcategory',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'itiltemplate',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'ticketrecurrent',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'ticketcost',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'change',
'rights' => UPDATE | CREATE | DELETE | PURGE | Change::READALL,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'change',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE | Change::READALL,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'ticketvalidation',
'rights' => PURGE | TicketValidation::CREATEREQUEST | TicketValidation::CREATEINCIDENT,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'computer',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'monitor',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'software',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'networking',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'internet',
'rights' => ALLSTANDARDRIGHT,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'printer',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'peripheral',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'cartridge',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'consumable',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'phone',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'queuednotification',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'contact_enterprise',
'rights' => READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'document',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'contract',
'rights' => READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'infocom',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'knowbase',
'rights' => READ | UPDATE | CREATE | PURGE | KnowbaseItem::READFAQ | KnowbaseItem::PUBLISHFAQ | KnowbaseItem::COMMENTS,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'reservation',
'rights' => READ | UPDATE | CREATE | DELETE | PURGE | ReservationItem::RESERVEANITEM,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'reports',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'dropdown',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'device',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'typedoc',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'link',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'config',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'rule_ticket',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'rule_import',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'rule_location',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'rule_ldap',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'rule_softwarecategories',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'search_config',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'domain',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'profile',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'user',
'rights' => READ | UPDATE | CREATE | DELETE | PURGE | User::IMPORTEXTAUTHUSERS,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'group',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'entity',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'transfer',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'logs',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'reminder_public',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'rssfeed_public',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'bookmark_public',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'backup',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'ticket',
'rights' => Ticket::READMY | UPDATE | CREATE | Ticket::READALL | Ticket::READGROUP
| Ticket::OWN | Ticket::SURVEY,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'followup',
'rights' => ITILFollowup::SEEPUBLIC | ITILFollowup::UPDATEMY | ITILFollowup::ADDMYTICKET
| ITILFollowup::UPDATEALL | ITILFollowup::ADDALLTICKET | ITILFollowup::SEEPRIVATE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'task',
'rights' => CommonITILTask::SEEPUBLIC | PURGE | CommonITILTask::UPDATEALL
| CommonITILTask::ADDALLITEM | CommonITILTask::SEEPRIVATE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'project',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'project',
'rights' => READ | Project::READALL,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'project',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE | Project::READALL,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'planning',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'taskcategory',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'cable_management',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'statistic',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'password_update',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'show_group_hardware',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'rule_dictionnary_software',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'rule_dictionnary_dropdown',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'budget',
'rights' => READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'notification',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'rule_mailcollector',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'state',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'state',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'calendar',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'slm',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'rule_dictionnary_printer',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'problem',
'rights' => Problem::READMY | Problem::READALL | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'knowbasecategory',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'itilcategory',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'location',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'itiltemplate',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'ticketrecurrent',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'ticketcost',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'change',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE | Change::READALL,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'change',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE | Change::READALL,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'ticketvalidation',
'rights' => PURGE | TicketValidation::CREATEREQUEST | TicketValidation::CREATEINCIDENT,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'computer',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'monitor',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'software',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'networking',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'internet',
'rights' => ALLSTANDARDRIGHT,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'printer',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'peripheral',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'cartridge',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'consumable',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'phone',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'queuednotification',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'contact_enterprise',
'rights' => READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'document',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'contract',
'rights' => READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'infocom',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'knowbase',
'rights' => READ | UPDATE | CREATE | PURGE | KnowbaseItem::READFAQ | KnowbaseItem::PUBLISHFAQ | KnowbaseItem::COMMENTS,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'reservation',
'rights' => READ | UPDATE | CREATE | DELETE | PURGE | ReservationItem::RESERVEANITEM,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'reports',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'dropdown',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'device',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'typedoc',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'link',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'config',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'rule_ticket',
'rights' => READ | UPDATE | CREATE | PURGE | RuleTicket::PARENT,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'rule_import',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'rule_location',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'rule_ldap',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'rule_softwarecategories',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'search_config',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'domain',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'profile',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'user',
'rights' => READ | UPDATE | CREATE | DELETE | PURGE | User::IMPORTEXTAUTHUSERS,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'group',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'entity',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'transfer',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'logs',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'reminder_public',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'rssfeed_public',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'bookmark_public',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'backup',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'ticket',
'rights' => ALLSTANDARDRIGHT | Ticket::READALL | Ticket::READGROUP | Ticket::READASSIGN | Ticket::ASSIGN
| Ticket::STEAL | Ticket::OWN | Ticket::CHANGEPRIORITY | Ticket::SURVEY,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'followup',
'rights' => READ | UPDATE | CREATE | PURGE | ITILFollowup::UPDATEALL | ITILFollowup::ADDGROUPTICKET
| ITILFollowup::ADDALLTICKET | ITILFollowup::SEEPRIVATE | ITILFollowup::ADD_AS_OBSERVER,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'task',
'rights' => CommonITILTask::SEEPUBLIC | PURGE | CommonITILTask::UPDATEALL
| CommonITILTask::ADDALLITEM | CommonITILTask::SEEPRIVATE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'queuednotification',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'planning',
'rights' => READ | Planning::READGROUP | Planning::READALL,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'taskcategory',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'cable_management',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'statistic',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'password_update',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'show_group_hardware',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'rule_dictionnary_software',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'rule_dictionnary_dropdown',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'budget',
'rights' => READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'notification',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'rule_mailcollector',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'changevalidation',
'rights' => CREATE | PURGE | CommonITILValidation::VALIDATE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'state',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'calendar',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'slm',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'rule_dictionnary_printer',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'problem',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE | Problem::READALL,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'knowbasecategory',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'itilcategory',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'location',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'itiltemplate',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'ticketrecurrent',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'ticketcost',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'change',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'change',
'rights' => Change::READMY | READNOTE | Change::READALL,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'ticketvalidation',
'rights' => PURGE | TicketValidation::CREATEREQUEST | TicketValidation::CREATEINCIDENT | TicketValidation::VALIDATEREQUEST | TicketValidation::VALIDATEINCIDENT,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'backup',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'bookmark_public',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'budget',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'calendar',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'cartridge',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'change',
'rights' => Change::READMY | READNOTE | Change::READALL,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'changevalidation',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'computer',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'config',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'consumable',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'contact_enterprise',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'contract',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'device',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'document',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'domain',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'dropdown',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'entity',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'followup',
'rights' => READ | ITILFollowup::SEEPRIVATE,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'global_validation',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'group',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'infocom',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'internet',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'itilcategory',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'knowbase',
'rights' => READ | KnowbaseItem::READFAQ | KnowbaseItem::COMMENTS,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'knowbasecategory',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'link',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'location',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'logs',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'monitor',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'cable_management',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'networking',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'notification',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'password_update',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'peripheral',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'phone',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'planning',
'rights' => READ | Planning::READGROUP | Planning::READALL,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'printer',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'problem',
'rights' => Change::READMY | READNOTE | Change::READALL,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'profile',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'project',
'rights' => Change::READMY | READNOTE | Change::READALL,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'projecttask',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'queuednotification',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'reminder_public',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'reports',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'reservation',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'rssfeed_public',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'rule_dictionnary_dropdown',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'rule_dictionnary_printer',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'rule_dictionnary_software',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'rule_import',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'rule_location',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'rule_ldap',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'rule_mailcollector',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'rule_softwarecategories',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'rule_ticket',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'search_config',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'show_group_hardware',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'slm',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'software',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'solutiontemplate',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'itilfollowuptemplate',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'state',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'statistic',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'task',
'rights' => READ | CommonITILTask::SEEPRIVATE,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'taskcategory',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'ticket',
'rights' => Ticket::READMY | Ticket::READALL | Ticket::READGROUP | Ticket::READASSIGN | Ticket::SURVEY,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'ticketcost',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'ticketrecurrent',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'itiltemplate',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'ticketvalidation',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'transfer',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'typedoc',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'user',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'license',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'license',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'license',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'license',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE | UNLOCK,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'license',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'license',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'license',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'license',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'line',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'line',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'line',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'line',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE | UNLOCK,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'line',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'line',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'line',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'line',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'lineoperator',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'lineoperator',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'lineoperator',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'lineoperator',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'lineoperator',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'lineoperator',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'lineoperator',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'lineoperator',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'devicesimcard_pinpuk',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'devicesimcard_pinpuk',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'devicesimcard_pinpuk',
'rights' => READ | UPDATE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'devicesimcard_pinpuk',
'rights' => READ | UPDATE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'devicesimcard_pinpuk',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'devicesimcard_pinpuk',
'rights' => READ | UPDATE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'devicesimcard_pinpuk',
'rights' => READ | UPDATE,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'devicesimcard_pinpuk',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'certificate',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'certificate',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'certificate',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'certificate',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE | UNLOCK,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'certificate',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'certificate',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'certificate',
'rights' => ALLSTANDARDRIGHT | READNOTE | UPDATENOTE,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'certificate',
'rights' => READ | READNOTE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'datacenter',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'datacenter',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'datacenter',
'rights' => ALLSTANDARDRIGHT,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'datacenter',
'rights' => ALLSTANDARDRIGHT,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'datacenter',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'datacenter',
'rights' => ALLSTANDARDRIGHT,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'datacenter',
'rights' => ALLSTANDARDRIGHT,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'datacenter',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'rule_asset',
'rights' => READ | UPDATE | CREATE | PURGE | RuleAsset::PARENT,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'personalization',
'rights' => READ | UPDATE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'personalization',
'rights' => READ | UPDATE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'personalization',
'rights' => READ | UPDATE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'personalization',
'rights' => READ | UPDATE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'personalization',
'rights' => READ | UPDATE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'personalization',
'rights' => READ | UPDATE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'personalization',
'rights' => READ | UPDATE,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'personalization',
'rights' => READ | UPDATE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'rule_asset',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'rule_asset',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'rule_asset',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'rule_asset',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'rule_asset',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'rule_asset',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'rule_asset',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'global_validation',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'global_validation',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'global_validation',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'global_validation',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'global_validation',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'global_validation',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'global_validation',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'cluster',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'cluster',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'cluster',
'rights' => ALLSTANDARDRIGHT,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'cluster',
'rights' => ALLSTANDARDRIGHT,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'cluster',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'cluster',
'rights' => ALLSTANDARDRIGHT,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'cluster',
'rights' => ALLSTANDARDRIGHT,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'cluster',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'externalevent',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'externalevent',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'externalevent',
'rights' => ALLSTANDARDRIGHT | PlanningExternalEvent::MANAGE_BG_EVENTS,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'externalevent',
'rights' => ALLSTANDARDRIGHT | PlanningExternalEvent::MANAGE_BG_EVENTS,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'externalevent',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'externalevent',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'externalevent',
'rights' => ALLSTANDARDRIGHT,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'externalevent',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'dashboard',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'dashboard',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'dashboard',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'dashboard',
'rights' => READ | UPDATE | CREATE | PURGE,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'dashboard',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'dashboard',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'dashboard',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'dashboard',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'appliance',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'appliance',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'appliance',
'rights' => ALLSTANDARDRIGHT,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'appliance',
'rights' => ALLSTANDARDRIGHT,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'appliance',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'appliance',
'rights' => ALLSTANDARDRIGHT,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'appliance',
'rights' => ALLSTANDARDRIGHT,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'appliance',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'inventory',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'inventory',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'inventory',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'inventory',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'inventory',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'inventory',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'inventory',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'inventory',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'pendingreason',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'pendingreason',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'pendingreason',
'rights' => ALLSTANDARDRIGHT,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'pendingreason',
'rights' => ALLSTANDARDRIGHT,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'pendingreason',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'pendingreason',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'pendingreason',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'pendingreason',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'database',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'database',
'rights' => READ,
], [
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'database',
'rights' => ALLSTANDARDRIGHT,
], [
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'database',
'rights' => ALLSTANDARDRIGHT,
], [
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'database',
'rights' => self::RIGHT_NONE,
], [
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'database',
'rights' => ALLSTANDARDRIGHT,
], [
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'database',
'rights' => ALLSTANDARDRIGHT,
], [
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'database',
'rights' => READ,
],
[
'profiles_id' => self::PROFILE_SELF_SERVICE,
'name' => 'recurrentchange',
'rights' => self::RIGHT_NONE,
],
[
'profiles_id' => self::PROFILE_OBSERVER,
'name' => 'recurrentchange',
'rights' => self::RIGHT_NONE,
],
[
'profiles_id' => self::PROFILE_ADMIN,
'name' => 'recurrentchange',
'rights' => READ,
],
[
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'name' => 'recurrentchange',
'rights' => ALLSTANDARDRIGHT,
],
[
'profiles_id' => self::PROFILE_HOTLINER,
'name' => 'recurrentchange',
'rights' => self::RIGHT_NONE,
],
[
'profiles_id' => self::PROFILE_TECHNICIAN,
'name' => 'recurrentchange',
'rights' => READ,
],
[
'profiles_id' => self::PROFILE_SUPERVISOR,
'name' => 'recurrentchange',
'rights' => READ,
],
[
'profiles_id' => self::PROFILE_READ_ONLY,
'name' => 'recurrentchange',
'rights' => READ,
],
];
$tables['glpi_profiles'] = [
[
'id' => self::PROFILE_SELF_SERVICE,
'name' => 'Self-Service',
'interface' => 'helpdesk',
'is_default' => '1',
'helpdesk_hardware' => '1',
'helpdesk_item_type' => '["Computer","Monitor","NetworkEquipment","Peripheral","Phone","Printer","Software", "DCRoom", "Rack", "Enclosure", "Database"]',
'ticket_status' => '{"1":{"2":0,"3":0,"4":0,"5":0,"6":0},"2":{"1":0,"3":0,"4":0,"5":0,"6":0},"3":{"1":0,"2":0,"4":0,"5":0,"6":0},"4":{"1":0,"2":0,"3":0,"5":0,"6":0},"5":{"1":0,"2":0,"3":0,"4":0},"6":{"1":0,"2":0,"3":0,"4":0,"5":0}}',
'comment' => '',
'problem_status' => '[]',
'create_ticket_on_login' => '0',
'tickettemplates_id' => '0',
'change_status' => null,
'managed_domainrecordtypes' => '[]',
], [
'id' => self::PROFILE_OBSERVER,
'name' => 'Observer',
'interface' => 'central',
'is_default' => '0',
'helpdesk_hardware' => '1',
'helpdesk_item_type' => '["Computer","Monitor","NetworkEquipment","Peripheral","Phone","Printer","Software", "DCRoom", "Rack", "Enclosure", "Database"]',
'ticket_status' => '[]',
'comment' => '',
'problem_status' => '[]',
'create_ticket_on_login' => '0',
'tickettemplates_id' => '0',
'change_status' => null,
'managed_domainrecordtypes' => '[]',
], [
'id' => self::PROFILE_ADMIN,
'name' => 'Admin',
'interface' => 'central',
'is_default' => '0',
'helpdesk_hardware' => '3',
'helpdesk_item_type' => '["Computer","Monitor","NetworkEquipment","Peripheral","Phone","Printer","Software", "DCRoom", "Rack", "Enclosure", "Database"]',
'ticket_status' => '[]',
'comment' => '',
'problem_status' => '[]',
'create_ticket_on_login' => '0',
'tickettemplates_id' => '0',
'change_status' => null,
'managed_domainrecordtypes' => '[-1]',
], [
'id' => self::PROFILE_SUPER_ADMIN,
'name' => 'Super-Admin',
'interface' => 'central',
'is_default' => '0',
'helpdesk_hardware' => '3',
'helpdesk_item_type' => '["Computer","Monitor","NetworkEquipment","Peripheral","Phone","Printer","Software", "DCRoom", "Rack", "Enclosure", "Database"]',
'ticket_status' => '[]',
'comment' => '',
'problem_status' => '[]',
'create_ticket_on_login' => '0',
'tickettemplates_id' => '0',
'change_status' => null,
'managed_domainrecordtypes' => '[-1]',
], [
'id' => self::PROFILE_HOTLINER,
'name' => 'Hotliner',
'interface' => 'central',
'is_default' => '0',
'helpdesk_hardware' => '3',
'helpdesk_item_type' => '["Computer","Monitor","NetworkEquipment","Peripheral","Phone","Printer","Software", "DCRoom", "Rack", "Enclosure", "Database"]',
'ticket_status' => '[]',
'comment' => '',
'problem_status' => '[]',
'create_ticket_on_login' => '1',
'tickettemplates_id' => '0',
'change_status' => null,
'managed_domainrecordtypes' => '[]',
], [
'id' => self::PROFILE_TECHNICIAN,
'name' => 'Technician',
'interface' => 'central',
'is_default' => '0',
'helpdesk_hardware' => '3',
'helpdesk_item_type' => '["Computer","Monitor","NetworkEquipment","Peripheral","Phone","Printer","Software", "DCRoom", "Rack", "Enclosure", "Database"]',
'ticket_status' => '[]',
'comment' => '',
'problem_status' => '[]',
'create_ticket_on_login' => '0',
'tickettemplates_id' => '0',
'change_status' => null,
'managed_domainrecordtypes' => '[]',
], [
'id' => self::PROFILE_SUPERVISOR,
'name' => 'Supervisor',
'interface' => 'central',
'is_default' => '0',
'helpdesk_hardware' => '3',
'helpdesk_item_type' => '["Computer","Monitor","NetworkEquipment","Peripheral","Phone","Printer","Software", "DCRoom", "Rack", "Enclosure", "Database"]',
'ticket_status' => '[]',
'comment' => '',
'problem_status' => '[]',
'create_ticket_on_login' => '0',
'tickettemplates_id' => '0',
'change_status' => null,
'managed_domainrecordtypes' => '[]',
], [
'id' => self::PROFILE_READ_ONLY,
'name' => 'Read-Only',
'interface' => 'central',
'is_default' => '0',
'helpdesk_hardware' => '0',
'helpdesk_item_type' => '[]',
'ticket_status' => '{"1":{"2":0,"3":0,"4":0,"5":0,"6":0},"2":{"1":0,"3":0,"4":0,"5":0,"6":0},"3":{"1":0,"2":0,"4":0,"5":0,"6":0},"4":{"1":0,"2":0,"3":0,"5":0,"6":0},"5":{"1":0,"2":0,"3":0,"4":0,"6":0},"6":{"1":0,"2":0,"3":0,"4":0,"5":0}}',
'comment' => 'This profile defines read-only access. It is used when objects are locked. It can also be used to give to users rights to unlock objects.',
'problem_status' => '{"1":{"7":0,"2":0,"3":0,"4":0,"5":0,"8":0,"6":0},"7":{"1":0,"2":0,"3":0,"4":0,"5":0,"8":0,"6":0},"2":{"1":0,"7":0,"3":0,"4":0,"5":0,"8":0,"6":0},"3":{"1":0,"7":0,"2":0,"4":0,"5":0,"8":0,"6":0},"4":{"1":0,"7":0,"2":0,"3":0,"5":0,"8":0,"6":0},"5":{"1":0,"7":0,"2":0,"3":0,"4":0,"8":0,"6":0},"8":{"1":0,"7":0,"2":0,"3":0,"4":0,"5":0,"6":0},"6":{"1":0,"7":0,"2":0,"3":0,"4":0,"5":0,"8":0}}',
'create_ticket_on_login' => '0',
'tickettemplates_id' => '0',
'change_status' => '{"1":{"9":0,"10":0,"7":0,"4":0,"11":0,"12":0,"5":0,"8":0,"6":0},"9":{"1":0,"10":0,"7":0,"4":0,"11":0,"12":0,"5":0,"8":0,"6":0},"10":{"1":0,"9":0,"7":0,"4":0,"11":0,"12":0,"5":0,"8":0,"6":0},"7":{"1":0,"9":0,"10":0,"4":0,"11":0,"12":0,"5":0,"8":0,"6":0},"4":{"1":0,"9":0,"10":0,"7":0,"11":0,"12":0,"5":0,"8":0,"6":0},"11":{"1":0,"9":0,"10":0,"7":0,"4":0,"12":0,"5":0,"8":0,"6":0},"12":{"1":0,"9":0,"10":0,"7":0,"4":0,"11":0,"5":0,"8":0,"6":0},"5":{"1":0,"9":0,"10":0,"7":0,"4":0,"11":0,"12":0,"8":0,"6":0},"8":{"1":0,"9":0,"10":0,"7":0,"4":0,"11":0,"12":0,"5":0,"6":0},"6":{"1":0,"9":0,"10":0,"7":0,"4":0,"11":0,"12":0,"5":0,"8":0}}',
'managed_domainrecordtypes' => '[]',
],
];
$tables['glpi_profiles_users'] = [
[
'id' => '2',
'users_id' => self::USER_GLPI,
'profiles_id' => self::PROFILE_SUPER_ADMIN,
'entities_id' => '0',
'is_recursive' => '1',
'is_dynamic' => '0',
], [
'id' => '3',
'users_id' => self::USER_POST_ONLY,
'profiles_id' => self::PROFILE_SELF_SERVICE,
'entities_id' => '0',
'is_recursive' => '1',
'is_dynamic' => '0',
], [
'id' => '4',
'users_id' => self::USER_TECH,
'profiles_id' => self::PROFILE_TECHNICIAN,
'entities_id' => '0',
'is_recursive' => '1',
'is_dynamic' => '0',
], [
'id' => '5',
'users_id' => self::USER_NORMAL,
'profiles_id' => self::PROFILE_OBSERVER,
'entities_id' => '0',
'is_recursive' => '1',
'is_dynamic' => '0',
],
];
$tables['glpi_projectstates'] = [
[
'id' => '1',
'name' => 'New',
'color' => '#06ff00',
'is_finished' => '0',
], [
'id' => '2',
'name' => 'Processing',
'color' => '#ffb800',
'is_finished' => '0',
], [
'id' => '3',
'name' => 'Closed',
'color' => '#ff0000',
'is_finished' => '1',
],
];
$tables['glpi_requesttypes'] = [
[
'id' => '1',
'name' => 'Helpdesk',
'is_helpdesk_default' => '1',
'is_followup_default' => '1',
'is_mail_default' => '0',
'is_mailfollowup_default' => '0',
], [
'id' => '2',
'name' => 'E-Mail',
'is_helpdesk_default' => '0',
'is_followup_default' => '0',
'is_mail_default' => '1',
'is_mailfollowup_default' => '1',
], [
'id' => '3',
'name' => 'Phone',
'is_helpdesk_default' => '0',
'is_followup_default' => '0',
'is_mail_default' => '0',
'is_mailfollowup_default' => '0',
], [
'id' => '4',
'name' => 'Direct',
'is_helpdesk_default' => '0',
'is_followup_default' => '0',
'is_mail_default' => '0',
'is_mailfollowup_default' => '0',
], [
'id' => '5',
'name' => 'Written',
'is_helpdesk_default' => '0',
'is_followup_default' => '0',
'is_mail_default' => '0',
'is_mailfollowup_default' => '0',
], [
'id' => '6',
'name' => 'Other',
'is_helpdesk_default' => '0',
'is_followup_default' => '0',
'is_mail_default' => '0',
'is_mailfollowup_default' => '0',
],
];
$tables['glpi_ruleactions'] = [
[
'id' => '6',
'rules_id' => '6',
'action_type' => 'fromitem',
'field' => 'locations_id',
'value' => '1',
], [
'id' => '2',
'rules_id' => '2',
'action_type' => 'assign',
'field' => 'entities_id',
'value' => '0',
], [
'id' => '3',
'rules_id' => '3',
'action_type' => 'assign',
'field' => 'entities_id',
'value' => '0',
], [
'id' => '4',
'rules_id' => '4',
'action_type' => 'assign',
'field' => '_refuse_email_no_response',
'value' => '1',
], [
'id' => '5',
'rules_id' => '5',
'action_type' => 'assign',
'field' => '_refuse_email_no_response',
'value' => '1',
], [
'id' => '7',
'rules_id' => '7',
'action_type' => 'fromuser',
'field' => 'locations_id',
'value' => '1',
], [
'id' => '8',
'rules_id' => '8',
'action_type' => 'assign',
'field' => '_import_category',
'value' => '1',
], [
'id' => '9',
'rules_id' => '9',
'action_type' => 'regex_result',
'field' => '_affect_user_by_regex',
'value' => '#0',
], [
'id' => '10',
'rules_id' => '10',
'action_type' => 'regex_result',
'field' => '_affect_user_by_regex',
'value' => '#0',
], [
'id' => '11',
'rules_id' => '11',
'action_type' => 'regex_result',
'field' => '_affect_user_by_regex',
'value' => '#0',
],
];
$tables['glpi_rulecriterias'] = [
[
'id' => 9,
'rules_id' => 6,
'criteria' => 'locations_id',
'condition' => 9,
'pattern' => 1,
], [
'id' => 2,
'rules_id' => 2,
'criteria' => 'TYPE',
'condition' => 0,
'pattern' => Auth::LDAP,
], [
'id' => 3,
'rules_id' => 2,
'criteria' => 'TYPE',
'condition' => 0,
'pattern' => Auth::MAIL,
], [
'id' => 5,
'rules_id' => 3,
'criteria' => 'subject',
'condition' => 6,
'pattern' => '/.*/',
], [
'id' => 6,
'rules_id' => 4,
'criteria' => 'x-auto-response-suppress',
'condition' => 6,
'pattern' => '/\\S+/',
], [
'id' => 7,
'rules_id' => 5,
'criteria' => 'auto-submitted',
'condition' => '6',
'pattern' => '/^(?!.*no).+$/i',
], [
'id' => 10,
'rules_id' => 6,
'criteria' => 'items_locations',
'condition' => 8,
'pattern' => 1,
], [
'id' => 11,
'rules_id' => 7,
'criteria' => 'locations_id',
'condition' => 9,
'pattern' => 1,
], [
'id' => 12,
'rules_id' => 7,
'criteria' => '_locations_id_of_requester',
'condition' => 8,
'pattern' => 1,
], [
'id' => 13,
'rules_id' => 8,
'criteria' => 'name',
'condition' => 0,
'pattern' => '*',
], [
'id' => 14,
'rules_id' => 9,
'criteria' => '_itemtype',
'condition' => 0,
'pattern' => 'Computer',
], [
'id' => 15,
'rules_id' => 9,
'criteria' => '_auto',
'condition' => 0,
'pattern' => 1,
], [
'id' => 16,
'rules_id' => 9,
'criteria' => 'contact',
'condition' => 6,
'pattern' => '/(.*)@/',
], [
'id' => 17,
'rules_id' => 10,
'criteria' => '_itemtype',
'condition' => 0,
'pattern' => 'Computer',
], [
'id' => 18,
'rules_id' => 10,
'criteria' => '_auto',
'condition' => 0,
'pattern' => 1,
], [
'id' => 19,
'rules_id' => 10,
'criteria' => 'contact',
'condition' => 6,
'pattern' => '/(.*)[,|\\/]/',
], [
'id' => 20,
'rules_id' => 11,
'criteria' => '_itemtype',
'condition' => 0,
'pattern' => 'Computer',
], [
'id' => 21,
'rules_id' => 11,
'criteria' => '_auto',
'condition' => 0,
'pattern' => 1,
], [
'id' => 22,
'rules_id' => 11,
'criteria' => 'contact',
'condition' => 6,
'pattern' => '/(.*)/',
],
];
$tables['glpi_rulerightparameters'] = [
[
'id' => 1,
'name' => '(LDAP)Organization',
'value' => 'o',
], [
'id' => '2',
'name' => '(LDAP)Common Name',
'value' => 'cn',
], [
'id' => '3',
'name' => '(LDAP)Department Number',
'value' => 'departmentnumber',
], [
'id' => '4',
'name' => '(LDAP)Email',
'value' => 'mail',
], [
'id' => '5',
'name' => 'Object Class',
'value' => 'objectclass',
], [
'id' => '6',
'name' => '(LDAP)User ID',
'value' => 'uid',
], [
'id' => '7',
'name' => '(LDAP)Telephone Number',
'value' => 'phone',
], [
'id' => '8',
'name' => '(LDAP)Employee Number',
'value' => 'employeenumber',
], [
'id' => '9',
'name' => '(LDAP)Manager',
'value' => 'manager',
], [
'id' => '10',
'name' => '(LDAP)DistinguishedName',
'value' => 'dn',
], [
'id' => '12',
'name' => '(AD)User ID',
'value' => 'samaccountname',
], [
'id' => '13',
'name' => '(LDAP) Title',
'value' => 'title',
], [
'id' => '14',
'name' => '(LDAP) MemberOf',
'value' => 'memberof',
],
];
$tables['glpi_rules'] = [
[
'id' => '2',
'sub_type' => 'RuleRight',
'ranking' => '1',
'name' => 'Root',
'description' => '',
'match' => 'OR',
'is_active' => '1',
'is_recursive' => 0,
'uuid' => '500717c8-2bd6e957-53a12b5fd35745.02608131',
'condition' => 0,
], [
'id' => '3',
'sub_type' => 'RuleMailCollector',
'ranking' => '3',
'name' => 'Root',
'description' => '',
'match' => 'OR',
'is_active' => '1',
'is_recursive' => '0',
'uuid' => '500717c8-2bd6e957-53a12b5fd36404.54713349',
'condition' => '0',
], [
'id' => '4',
'sub_type' => 'RuleMailCollector',
'ranking' => '1',
'name' => 'X-Auto-Response-Suppress',
'description' => 'Exclude Auto-Reply emails using X-Auto-Response-Suppress header',
'match' => 'AND',
'is_active' => '0',
'is_recursive' => '1',
'uuid' => '500717c8-2bd6e957-53a12b5fd36d97.94503423',
'condition' => '0',
], [
'id' => '5',
'sub_type' => 'RuleMailCollector',
'ranking' => '2',
'name' => 'Auto-Reply Auto-Submitted',
'description' => 'Exclude Auto-Reply emails using Auto-Submitted header',
'match' => 'OR',
'is_active' => '1',
'is_recursive' => '1',
'uuid' => '500717c8-2bd6e957-53a12b5fd376c2.87642651',
'condition' => '0',
], [
'id' => '6',
'sub_type' => 'RuleTicket',
'ranking' => '1',
'name' => 'Ticket location from item',
'description' => '',
'match' => 'AND',
'is_active' => '0',
'is_recursive' => '1',
'uuid' => '500717c8-2bd6e957-53a12b5fd37f94.10365341',
'condition' => '1',
], [
'id' => '7',
'sub_type' => 'RuleTicket',
'ranking' => '2',
'name' => 'Ticket location from user',
'description' => '',
'match' => 'AND',
'is_active' => '0',
'is_recursive' => '1',
'uuid' => '500717c8-2bd6e957-53a12b5fd38869.86002585',
'condition' => '1',
], [
'id' => '8',
'sub_type' => 'RuleSoftwareCategory',
'ranking' => '1',
'name' => 'Import category from inventory tool',
'description' => '',
'match' => 'AND',
'is_active' => '0',
'is_recursive' => '1',
'uuid' => '500717c8-2bd6e957-53a12b5fd38869.86003425',
'condition' => '1',
], [
'id' => '9',
'sub_type' => 'RuleAsset',
'ranking' => '1',
'name' => 'Domain user assignation',
'description' => '',
'match' => 'AND',
'is_active' => '1',
'is_recursive' => '1',
'uuid' => 'fbeb1115-7a37b143-5a3a6fc1afdc17.92779763',
'condition' => '3',
], [
'id' => '10',
'sub_type' => 'RuleAsset',
'ranking' => '2',
'name' => 'Multiple users: assign to the first',
'description' => '',
'match' => 'AND',
'is_active' => '1',
'is_recursive' => '1',
'uuid' => 'fbeb1115-7a37b143-5a3a6fc1b03762.88595154',
'condition' => '3',
], [
'id' => '11',
'sub_type' => 'RuleAsset',
'ranking' => '3',
'name' => 'One user assignation',
'description' => '',
'match' => 'AND',
'is_active' => '1',
'is_recursive' => '1',
'uuid' => 'fbeb1115-7a37b143-5a3a6fc1b073e1.16257440',
'condition' => '3',
],
];
$tables['glpi_softwarecategories'] = [
[
'id' => '1',
'name' => 'Inventoried',
'completename' => 'Software from inventories',
'level' => '1',
],
];
$tables['glpi_softwarelicensetypes'] = [
[
'id' => 1,
'name' => 'OEM',
'is_recursive' => 1,
'completename' => 'OEM',
],
];
$tables['glpi_ssovariables'] = [
[
'id' => 1,
'name' => 'HTTP_AUTH_USER',
], [
'id' => 2,
'name' => 'REMOTE_USER',
], [
'id' => 3,
'name' => 'PHP_AUTH_USER',
], [
'id' => 4,
'name' => 'USERNAME',
], [
'id' => 5,
'name' => 'REDIRECT_REMOTE_USER',
], [
'id' => 6,
'name' => 'HTTP_REMOTE_USER',
],
];
$tables['glpi_tickettemplates'] = [
[
'id' => 1,
'name' => 'Default',
'entities_id' => 0,
'is_recursive' => 1,
],
];
$tables['glpi_changetemplates'] = [
[
'id' => 1,
'name' => 'Default',
'entities_id' => 0,
'is_recursive' => 1,
],
];
$tables['glpi_problemtemplates'] = [
[
'id' => 1,
'name' => 'Default',
'entities_id' => 0,
'is_recursive' => 1,
],
];
$tables['glpi_tickettemplatemandatoryfields'] = [
[
'id' => 1,
'tickettemplates_id' => 1,
'num' => 21,
],
];
$tables['glpi_changetemplatemandatoryfields'] = [
[
'id' => 1,
'changetemplates_id' => 1,
'num' => 21,
],
];
$tables['glpi_problemtemplatemandatoryfields'] = [
[
'id' => 1,
'problemtemplates_id' => 1,
'num' => 21,
],
];
$tables['glpi_transfers'] = [
[
'id' => '1',
'name' => 'complete',
'keep_ticket' => '2',
'keep_networklink' => '2',
'keep_reservation' => 1,
'keep_history' => 1,
'keep_device' => 1,
'keep_infocom' => 1,
'keep_dc_monitor' => 1,
'clean_dc_monitor' => 1,
'keep_dc_phone' => 1,
'clean_dc_phone' => 1,
'keep_dc_peripheral' => 1,
'clean_dc_peripheral' => 1,
'keep_dc_printer' => 1,
'clean_dc_printer' => 1,
'keep_supplier' => 1,
'clean_supplier' => 1,
'keep_contact' => 1,
'clean_contact' => 1,
'keep_contract' => 1,
'clean_contract' => 1,
'keep_software' => 1,
'clean_software' => 1,
'keep_document' => 1,
'clean_document' => 1,
'keep_cartridgeitem' => 1,
'clean_cartridgeitem' => 1,
'keep_cartridge' => 1,
'keep_consumable' => 1,
'keep_disk' => 1,
'keep_certificate' => 1,
'clean_certificate' => 1,
],
];
$tables['glpi_users'] = [
[
'id' => self::USER_GLPI,
'name' => 'glpi',
'realname' => null,
'password' => '$2y$10$rXXzbc2ShaiCldwkw4AZL.n.9QSH7c0c9XJAyyjrbL9BwmWditAYm',
'language' => null,
'list_limit' => '20',
'authtype' => '1',
], [
'id' => self::USER_POST_ONLY,
'name' => 'post-only',
'realname' => null,
'password' => '$2y$10$dTMar1F3ef5X/H1IjX9gYOjQWBR1K4bERGf4/oTPxFtJE/c3vXILm',
'language' => 'en_GB',
'list_limit' => '20',
'authtype' => '1',
], [
'id' => self::USER_TECH,
'name' => 'tech',
'realname' => null,
'password' => '$2y$10$.xEgErizkp6Az0z.DHyoeOoenuh0RcsX4JapBk2JMD6VI17KtB1lO',
'language' => 'en_GB',
'list_limit' => '20',
'authtype' => '1',
], [
'id' => self::USER_NORMAL,
'name' => 'normal',
'realname' => null,
'password' => '$2y$10$Z6doq4zVHkSPZFbPeXTCluN1Q/r0ryZ3ZsSJncJqkN3.8cRiN0NV.',
'language' => 'en_GB',
'list_limit' => '20',
'authtype' => '1',
], [
'id' => self::USER_SYSTEM,
'name' => 'glpi-system',
'realname' => 'Support',
'password' => '',
'language' => null,
'list_limit' => null,
'authtype' => 1,
],
];
$tables['glpi_devicefirmwaretypes'] = [
[
'id' => '1',
'name' => 'BIOS',
],
[
'id' => '2',
'name' => 'UEFI',
],
[
'id' => '3',
'name' => 'Firmware',
],
];
$tables[DomainRecordType::getTable()] = DomainRecordType::getDefaults();
$tables[DomainRelation::getTable()] = DomainRelation::getDefaults();
$tables[NetworkPortType::getTable()] = Sanitizer::encodeHtmlSpecialCharsRecursive(NetworkPortType::getDefaults());
$tables['glpi_agenttypes'] = [
[
'id' => 1,
'name' => 'Core'
]
];
$tables[SNMPCredential::getTable()] = [
[
'id' => 1,
'name' => 'Public community v1',
'snmpversion' => 1,
'community' => 'public'
],
[
'id' => 2,
'name' => 'Public community v2c',
'snmpversion' => 2,
'community' => 'public'
]
];
return $tables;
}
};
return $empty_data_builder->getEmptyData();
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists