You are here

class Regular in SimpleAds 8

Regular Campign type.

Plugin annotation


@SimpleAdsCampaign(
  id = "regular",
  name = @Translation("Regular Campaign")
)

Hierarchy

Expanded class hierarchy of Regular

File

src/Plugin/SimpleAds/Campaign/Regular.php, line 17

Namespace

Drupal\simpleads\Plugin\SimpleAds\Campaign
View 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

Namesort descending Modifiers Type Description Overrides
PluginBase::$configuration protected property Configuration information passed into the plugin. 1
PluginBase::$pluginDefinition protected property The plugin implementation definition. 1
PluginBase::$pluginId protected property The plugin_id.
PluginBase::DERIVATIVE_SEPARATOR constant A string which is used to separate base plugin IDs from the derivative ID.
PluginBase::getBaseId public function Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface::getBaseId
PluginBase::getDerivativeId public function Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface::getDerivativeId
PluginBase::getPluginDefinition public function Gets the definition of the plugin implementation. Overrides PluginInspectionInterface::getPluginDefinition 3
PluginBase::getPluginId public function Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface::getPluginId
PluginBase::isConfigurable public function Determines if the plugin is configurable.
PluginBase::__construct public function Constructs a \Drupal\Component\Plugin\PluginBase object. 92
Regular::activate public function Render an ad. Overrides SimpleAdsCampaignBase::activate
Regular::buildForm public function Return ad campaign form to create an ad. Overrides SimpleAdsCampaignBase::buildForm
Regular::createFormSubmit public function Create an ad campaign. Overrides SimpleAdsCampaignBase::createFormSubmit
Regular::deactivate public function Render an ad. Overrides SimpleAdsCampaignBase::deactivate
Regular::updateFormSubmit public function Update an ad campaign. Overrides SimpleAdsCampaignBase::updateFormSubmit
SimpleAdsCampaignBase::deleteFormSubmit public function Delete an ad campaign. Overrides SimpleAdsCampaignInterface::deleteFormSubmit
SimpleAdsCampaignBase::getName public function Get plugin name. Overrides SimpleAdsCampaignInterface::getName
StringTranslationTrait::$stringTranslation protected property The string translation service. 1
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.