class Regular in SimpleAds 8
Regular Campign type.
Plugin annotation
@SimpleAdsCampaign(
id = "regular",
name = @Translation("Regular Campaign")
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\simpleads\SimpleAdsCampaignBase implements SimpleAdsCampaignInterface uses StringTranslationTrait
- class \Drupal\simpleads\Plugin\SimpleAds\Campaign\Regular
- class \Drupal\simpleads\SimpleAdsCampaignBase implements SimpleAdsCampaignInterface uses StringTranslationTrait
Expanded class hierarchy of Regular
File
- src/
Plugin/ SimpleAds/ Campaign/ Regular.php, line 17
Namespace
Drupal\simpleads\Plugin\SimpleAds\CampaignView source
class Regular extends SimpleAdsCampaignBase {
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state, $type = NULL, $id = NULL) {
$campaigns = (new Campaigns())
->setId($id)
->load();
$form['impressions'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Limit by Impressions'),
'#description' => $this
->t('Selected ads in this campaign will become inactive when the number of impressions reached.'),
];
$form['impressions_limit'] = [
'#type' => 'number',
'#title' => $this
->t('Number of Impressions'),
'#description' => $this
->t('Number of impressions before ads stop appearing.'),
'#states' => [
'visible' => [
'input[name="impressions"]' => [
'checked' => TRUE,
],
],
],
];
$form['clicks'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Limit by Clicks'),
'#description' => $this
->t('Selected ads in this campaign will become inactive when the number of clicks reached.'),
];
$form['clicks_limit'] = [
'#type' => 'number',
'#title' => $this
->t('Number of Clicks'),
'#description' => $this
->t('Number of Clicks (unique) before ads stop appearing.'),
'#states' => [
'visible' => [
'input[name="clicks"]' => [
'checked' => TRUE,
],
],
],
];
$form['start_date'] = [
'#type' => 'datetime',
'#title' => $this
->t('Start Date'),
'#description' => $this
->t('Campaign Start Date'),
];
$form['end_date'] = [
'#type' => 'datetime',
'#title' => $this
->t('End Date'),
'#description' => $this
->t('Campaign End Date'),
];
return $form;
}
/**
* {@inheritdoc}
*/
public function createFormSubmit($options, FormStateInterface $form_state, $type = NULL) {
return $options;
}
/**
* {@inheritdoc}
*/
public function updateFormSubmit($options, FormStateInterface $form_state, $type = NULL, $id = NULL) {
return $options;
}
/**
* {@inheritdoc}
*/
public function activate() {
}
/**
* {@inheritdoc}
*/
public function deactivate() {
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
PluginBase:: |
public | function | Constructs a \Drupal\Component\Plugin\PluginBase object. | 92 |
Regular:: |
public | function |
Render an ad. Overrides SimpleAdsCampaignBase:: |
|
Regular:: |
public | function |
Return ad campaign form to create an ad. Overrides SimpleAdsCampaignBase:: |
|
Regular:: |
public | function |
Create an ad campaign. Overrides SimpleAdsCampaignBase:: |
|
Regular:: |
public | function |
Render an ad. Overrides SimpleAdsCampaignBase:: |
|
Regular:: |
public | function |
Update an ad campaign. Overrides SimpleAdsCampaignBase:: |
|
SimpleAdsCampaignBase:: |
public | function |
Delete an ad campaign. Overrides SimpleAdsCampaignInterface:: |
|
SimpleAdsCampaignBase:: |
public | function |
Get plugin name. Overrides SimpleAdsCampaignInterface:: |
|
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. |