You are here

public function SimplenewsSubscriberController::create in Simplenews 7.2

Overrides EntityAPIController::create().

Overrides EntityAPIController::create

File

includes/simplenews.controller.inc, line 75
Seimplenews entity controllers definitions.

Class

SimplenewsSubscriberController
Controller for simplenews_subscriber entity.

Code

public function create(array $values = array()) {
  $values += array(
    'changes' => array(),
    'created' => REQUEST_TIME,
  );
  return parent::create($values);
}