dieSchema() 공개 정적인 메소드

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
리턴 void
예제 #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));
 }