You are here

public function views_oai_pmh_error::__construct in Views OAI-PMH 7.3

Constructor.

12 calls to views_oai_pmh_error::__construct()
views_oai_pmh_error_bad_argument::__construct in includes/error.inc
Constructor.
views_oai_pmh_error_bad_resumption_token::__construct in includes/error.inc
Constructor.
views_oai_pmh_error_bad_value::__construct in includes/error.inc
Constructor.
views_oai_pmh_error_bad_verb::__construct in includes/error.inc
Constructor.
views_oai_pmh_error_cannot_disseminate_format::__construct in includes/error.inc
Constructor.

... See full list

12 methods override views_oai_pmh_error::__construct()
views_oai_pmh_error_bad_argument::__construct in includes/error.inc
Constructor.
views_oai_pmh_error_bad_resumption_token::__construct in includes/error.inc
Constructor.
views_oai_pmh_error_bad_value::__construct in includes/error.inc
Constructor.
views_oai_pmh_error_bad_verb::__construct in includes/error.inc
Constructor.
views_oai_pmh_error_cannot_disseminate_format::__construct in includes/error.inc
Constructor.

... See full list

File

includes/error.inc, line 19
Base class for an OAI-PMH error.

Class

views_oai_pmh_error
Views OAI-PMH error.

Code

public function __construct($code, $argument = '', $value = '') {
  $this->code = $code;
  $this->argument = $argument;
  $this->value = $value;
}