function support_ticket_install in Support Ticketing System 8
Implements hook_install().
File
- modules/
support_ticket/ support_ticket.install, line 11 - Install, update and uninstall functions for the support ticket module.
Code
function support_ticket_install() {
// Store default settings for support ticket diffs. We do it manually as this configuration
// lives in diff.settings, a configuration file we don't manage.
$config = \Drupal::configFactory()
->getEditable('diff.settings');
$base_fields = \Drupal::entityManager()
->getBaseFieldDefinitions('support_ticket');
foreach ($base_fields as $field_key => $field) {
// If anything in the following array changes between support ticket revisions, a diff
// will be generated.
if (in_array($field_key, array(
'stid',
'support_ticket_type',
'langcode',
'title',
'uid',
'status',
'locked',
'created',
))) {
$compare = 1;
}
else {
$compare = 0;
}
$config
->set('entity.support_ticket' . '.' . $field_key, $compare);
}
$config
->save();
$config = \Drupal::configFactory()
->getEditable('diff.plugins');
// The Priority field is a list_string configured as "key => label", we need
// to compare the "label" to see human readable changes.
$config
->set('field_types.list_string.settings.compare', 'label');
$config
->save();
}