You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

dataaccess.php.twig 402B

123456789101112131415
  1. {{ "<?php" }}
  2. namespace {{ dataaccess_namespace.as_it }};
  3. use Luticate\Utils\LuDataAccess;
  4. use {{ models_namespace.as_it }}\{{ model_user_name.as_it }};
  5. use {{ dbo_namespace.as_it }}\{{ dbo_name.as_it }};
  6. class {{ data_access_name.as_it }} extends LuDataAccess {
  7. public function __construct()
  8. {
  9. parent::__construct();
  10. $this->model = new {{ model_user_name.as_it }}();
  11. }
  12. }