Advertisement
Guest User

Untitled

a guest
May 28th, 2014
354
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. $ find .
  2. .
  3. ./app
  4. ./app/forms
  5. ./app/forms/PatientIntakeForm.php~
  6. ./app/forms/PatientIntakeForm.php
  7. ./app/cache
  8. ./app/controllers
  9. ./app/controllers/IndexController.php
  10. ./app/controllers/ControllerBase.php
  11. ./app/controllers/PatientintakeController.php
  12. ./app/models
  13. ./app/models/PatientIntake.php
  14. ./app/models/AuditView.php
  15. ./app/models/AuditValues.php
  16. ./app/models/Users.php
  17. ./app/models/AuditTransaction.php
  18. ./app/views
  19. ./app/views/layouts
  20. ./app/views/PatientIntake
  21. ./app/views/PatientIntake/search.volt
  22. ./app/views/PatientIntake/edit.volt
  23. ./app/views/PatientIntake/create.volt
  24. ./app/views/PatientIntake/index.volt
  25. ./app/views/index
  26. ./app/views/index/index.volt
  27. ./app/views/index.volt
  28. ./app/config
  29. ./app/config/loader.php
  30. ./app/config/services.php
  31. ./app/config/config.php
  32. ./.htaccess
  33. ./.phalcon
  34. ./public
  35. ./public/.htaccess
  36. ./public/files
  37. ./public/temp
  38. ./public/index.php
  39. ./public/js
  40. ./public/img
  41. ./public/css
  42. ./index.html
  43. $less app/controllers/PatientintakeController.php
  44. <?php
  45.  
  46. namespace test\Controllers;
  47.  
  48. use Phalcon\Tag;
  49. use Phalcon\Mvc\Controller;
  50. use Phalcon\Mvc\Model\Criteria;
  51. use Phalcon\Paginator\Adapter\Model as Paginator;
  52. use test\Forms\PatientIntakeForm;
  53. use test\Models\PatientIntake;
  54.  
  55. class PatientintakeController extends Controller{
  56. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement