getConfigurationValue('messaging_allow_send_push_notification'); $this->addSettingCurrent( 'messaging_allow_send_push_notification', null, 'radio', 'WebServices', ($allowSendPushNotification ? 'true' : 'false'), 'MessagingAllowSendPushNotificationTitle', 'MessagingAllowSendPushNotificationComment', null, '', 1, true, false, [ ['value' => 'true', 'text' => 'Yes'], ['value' => 'false', 'text' => 'No'], ] ); $gdcProjectNumber = $this->getConfigurationValue('messaging_gdc_project_number'); $this->addSettingCurrent( 'messaging_gdc_project_number', null, 'textfield', 'WebServices', !empty($gdcProjectNumber) ? $gdcProjectNumber : '', 'MessagingGDCProjectNumberTitle', 'MessagingGDCProjectNumberComment', null, '', 1, true, false ); $gdcApiKey = $this->getConfigurationValue('messaging_gdc_api_key'); $this->addSettingCurrent( 'messaging_gdc_api_key', null, 'textfield', 'WebServices', !empty($gdcApiKey) ? $gdcApiKey : '', 'MessagingGDCApiKeyTitle', 'MessagingGDCApiKeyComment', null, '', 1, true, false ); } /** * @param Schema $schema */ public function down(Schema $schema) { } }