This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="[[++cultureKey]]" > | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<!-- @todo: fill with your company info or remove --> | |
<meta name="description" content=""> | |
<meta name="author" content=""> | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class MyControllerFahrten extends modRestController { | |
public $classKey = 'fbuchFahrt'; | |
public $defaultSortField = 'date'; | |
public $defaultSortDirection = 'ASC'; | |
public function beforeDelete() { | |
throw new Exception('Unauthorized', 401); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class rebuildSchemaFromMap{ | |
public $packageName = ''; | |
public $packagePath = ''; | |
public $modelPath = ''; | |
public $dbtype = ''; | |
public $defaultEngine = 'MyISAM'; | |
public $objects= array(); |