public function AdsenseRevenueSharingBasicSettings::buildForm in Google AdSense integration 8
Form constructor.
Parameters
array $form: An associative array containing the structure of the form.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
Return value
array The form structure.
Overrides ConfigFormBase::buildForm
File
- oldcode/
revenue_sharing_basic/ src/ Form/ AdsenseRevenueSharingBasicSettings.php, line 34
Class
- AdsenseRevenueSharingBasicSettings
- Form for the adsense revenue sharing settings.
Namespace
Drupal\adsense_revenue_sharing_basic\FormCode
public function buildForm(array $form, FormStateInterface $form_state) {
module_load_include('inc', 'adsense_revenue_sharing_basic', 'help/adsense_revenue_sharing_basic.help');
$config = $this
->config('adsense_revenue_sharing_basic.settings');
$form['help'] = [
'#type' => 'details',
'#open' => FALSE,
'#title' => $this
->t('Help and instructions'),
];
$form['help']['help'] = [
'#markup' => adsense_revenue_sharing_basic_help_text(),
];
$form['required'] = [
'#type' => 'details',
'#open' => TRUE,
'#title' => $this
->t('Required parameters'),
];
$form['required']['client_id_profile_field'] = [
'#type' => 'select',
'#title' => $this
->t('Google AdSense client ID profile field'),
'#default_value' => $config
->get('client_id_profile_field'),
'#options' => $this
->getProfileFields(),
'#required' => TRUE,
'#description' => $this
->t('This is the user profile field that holds the AdSense Client ID for the site owner as well as (optionally) for site users who participate in revenue sharing.'),
];
$form['percentage'] = [
'#type' => 'details',
'#open' => TRUE,
'#title' => $this
->t('Revenue sharing percentage'),
];
$form['percentage']['percentage_author'] = [
'#type' => 'range',
'#title' => $this
->t('Percentage of node views going to author'),
'#default_value' => $config
->get('percentage_author'),
];
$form['percentage']['role'] = [
'#type' => 'fieldset',
'#title' => $this
->t('Percentage of node views going to author with the following roles'),
'#description' => $this
->t('When the author belongs to one or more roles, the percentage of node views using his AdSense Client ID will be the maximum between the author value and the following settings for each role.'),
];
$roles = Role::loadMultiple();
unset($roles[RoleInterface::ANONYMOUS_ID]);
unset($roles[RoleInterface::AUTHENTICATED_ID]);
/** @var \Drupal\user\Entity\Role $role */
foreach ($roles as $rid => $role) {
// When using dots in the key, the form values were empty, so use dashes.
$form['percentage']['role']['percentage_role-' . $rid] = [
'#type' => 'range',
'#title' => $role
->label(),
'#default_value' => is_null($config
->get('percentage_role.' . $rid)) ? ADSENSE_REVENUE_SHARING_BASIC_PERCENTAGE_ROLE_DEFAULT : $config
->get('percentage_role.' . $rid),
];
}
$form['content_types'] = [
'#type' => 'details',
'#open' => TRUE,
'#title' => $this
->t('Content types'),
];
$types = NodeType::loadMultiple();
/** @var \Drupal\node\Entity\NodeType $type */
foreach ($types as $id => $type) {
// When using dots in the key, the form values were empty, so use dashes.
$form['content_types']['node_type-' . $id] = [
'#type' => 'checkbox',
'#title' => $type
->label(),
'#default_value' => is_null($config
->get('node_type.' . $id)) ? ADSENSE_REVENUE_SHARING_BASIC_NODE_TYPE_DEFAULT : $config
->get('node_type.' . $id),
];
}
$form_state
->set([
'#redirect',
], 'admin/config/services/adsense/publisher');
return parent::buildForm($form, $form_state);
}