Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.83 KB | None | 0 0
  1. testdrive/
  2. index.php Web application entry script file
  3. index-test.php entry script file for the functional tests
  4. assets/ containing published resource files
  5. css/ containing CSS files
  6. images/ containing image files
  7. themes/ containing application themes
  8. protected/ containing protected application files
  9. yiic yiic command line script for Unix/Linux
  10. yiic.bat yiic command line script for Windows
  11. yiic.php yiic command line PHP script
  12. commands/ containing customized 'yiic' commands
  13. shell/ containing customized 'yiic shell' commands
  14. components/ containing reusable user components
  15. Controller.php the base class for all controller classes
  16. UserIdentity.php the 'UserIdentity' class used for authentication
  17. config/ containing configuration files
  18. console.php the console application configuration
  19. main.php the Web application configuration
  20. test.php the configuration for the functional tests
  21. controllers/ containing controller class files
  22. SiteController.php the default controller class
  23. data/ containing the sample database
  24. schema.mysql.sql the DB schema for the sample MySQL database
  25. schema.sqlite.sql the DB schema for the sample SQLite database
  26. testdrive.db the sample SQLite database file
  27. extensions/ containing third-party extensions
  28. messages/ containing translated messages
  29. models/ containing model class files
  30. LoginForm.php the form model for 'login' action
  31. ContactForm.php the form model for 'contact' action
  32. runtime/ containing temporarily generated files
  33. tests/ containing test scripts
  34. views/ containing controller view and layout files
  35. layouts/ containing layout view files
  36. main.php the base layout shared by all pages
  37. column1.php the layout for pages using a single column
  38. column2.php the layout for pages using two columns
  39. site/ containing view files for the 'site' controller
  40. pages/ containing "static" pages
  41. about.php the view for the "about" page
  42. contact.php the view for 'contact' action
  43. error.php the view for 'error' action (displaying external errors)
  44. index.php the view for 'index' action
  45. login.php the view for 'login' action
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement