dieSchema() public static method

Displays an error message
public static dieSchema ( integer $pageNumber, string $type = '', string $error_message = '' ) : void
$pageNumber integer ID of the chosen page
$type string Schema Type
$error_message string The error message
return void
Beispiel #1
0
 /**
  * Displays an error when the table cannot be found.
  *
  * @return void
  */
 protected function showMissingTableError()
 {
     ExportRelationSchema::dieSchema($this->pageNumber, "EPS", sprintf(__('The %s table doesn\'t exist!'), $this->tableName));
 }