Changeset 452134
- Timestamp:
- 10/17/2011 06:37:22 PM (14 years ago)
- Location:
- wp-mvc
- Files:
-
- 8 added
- 4 edited
-
tags/1.1.1/README.md (modified) (1 diff)
-
tags/1.1.1/readme.txt (modified) (2 diffs)
-
tags/1.1.1/screenshot-2.png (added)
-
tags/1.1.1/screenshot-3.png (added)
-
tags/1.1.1/screenshot-4.png (added)
-
tags/1.1.1/screenshot-5.png (added)
-
trunk/README.md (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/screenshot-2.png (added)
-
trunk/screenshot-3.png (added)
-
trunk/screenshot-4.png (added)
-
trunk/screenshot-5.png (added)
Legend:
- Unmodified
- Added
- Removed
-
wp-mvc/tags/1.1.1/README.md
r451789 r452134 51 51 #### Is feature X available? 52 52 53 This framework is still in development. Most of the functionality that's available is used in the example application, so if there's functionality that you'd like to use that isn't implemented in there, it may not exist yet. However, if it's something that is widely useful, I'd certainly be willing to implement it myself or to accept any well-written code that implements it. Please feel free to either add a topic in the WordPress forum or contact me through GitHub for any such requests:53 Most of the functionality that's available is used in the example applications, so if there's functionality that you'd like to use that isn't implemented in those or mentioned on [wpmvc.org](http://wpmvc.org), it may not exist yet. However, if it's something that is widely useful, I'd certainly be willing to implement it myself or to accept any well-written code that implements it. Please feel free to either add a topic in the WordPress forum or contact me through GitHub for any such requests: 54 54 55 55 * [WordPress Forum](http://wordpress.org/tags/wp-mvc?forum_id=10) -
wp-mvc/tags/1.1.1/readme.txt
r451789 r452134 53 53 = Is feature X available? = 54 54 55 This framework is still in development. Most of the functionality that's available is used in the example application, so if there's functionality that you'd like to use that isn't implemented in there, it may not exist yet. However, if it's something that is widely useful, I'd certainly be willing to implement it myself or to accept any well-written code that implements it. Please feel free to either add a topic in the WordPress forum or contact me through GitHub for any such requests:55 Most of the functionality that's available is used in the example applications, so if there's functionality that you'd like to use that isn't implemented in those or mentioned on [wpmvc.org](http://wpmvc.org), it may not exist yet. However, if it's something that is widely useful, I'd certainly be willing to implement it myself or to accept any well-written code that implements it. Please feel free to either add a topic in the WordPress forum or contact me through GitHub for any such requests: 56 56 57 57 * [WordPress Forum](http://wordpress.org/tags/wp-mvc?forum_id=10) … … 61 61 62 62 1. If you've worked with MVC frameworks before, the file structure for WP MVC will look refreshingly familiar. 63 2. Administration Menus are added automatically for each model, but they can be customized or omitted. 64 3. An example of the default "admin/index" view, which includes search functionality and pagination by default and can be customized. 65 4. An example of the default "admin/add" view. See the next screenshot for the code that creates it. 66 5. The code of the "admin/add" view in the previous screenshot. Forms can be easily created using the form helper, which includes an `input()` method that automatically determines the data type of the field and shows an appropriate input tag. Methods for most types of inputs (textareas, hidden inputs, select tags, checkboxes, etc) are also available, as are association-related input methods like `belongs_to_dropdown()` and has_many_dropdown()`. -
wp-mvc/trunk/README.md
r451789 r452134 51 51 #### Is feature X available? 52 52 53 This framework is still in development. Most of the functionality that's available is used in the example application, so if there's functionality that you'd like to use that isn't implemented in there, it may not exist yet. However, if it's something that is widely useful, I'd certainly be willing to implement it myself or to accept any well-written code that implements it. Please feel free to either add a topic in the WordPress forum or contact me through GitHub for any such requests:53 Most of the functionality that's available is used in the example applications, so if there's functionality that you'd like to use that isn't implemented in those or mentioned on [wpmvc.org](http://wpmvc.org), it may not exist yet. However, if it's something that is widely useful, I'd certainly be willing to implement it myself or to accept any well-written code that implements it. Please feel free to either add a topic in the WordPress forum or contact me through GitHub for any such requests: 54 54 55 55 * [WordPress Forum](http://wordpress.org/tags/wp-mvc?forum_id=10) -
wp-mvc/trunk/readme.txt
r451789 r452134 53 53 = Is feature X available? = 54 54 55 This framework is still in development. Most of the functionality that's available is used in the example application, so if there's functionality that you'd like to use that isn't implemented in there, it may not exist yet. However, if it's something that is widely useful, I'd certainly be willing to implement it myself or to accept any well-written code that implements it. Please feel free to either add a topic in the WordPress forum or contact me through GitHub for any such requests:55 Most of the functionality that's available is used in the example applications, so if there's functionality that you'd like to use that isn't implemented in those or mentioned on [wpmvc.org](http://wpmvc.org), it may not exist yet. However, if it's something that is widely useful, I'd certainly be willing to implement it myself or to accept any well-written code that implements it. Please feel free to either add a topic in the WordPress forum or contact me through GitHub for any such requests: 56 56 57 57 * [WordPress Forum](http://wordpress.org/tags/wp-mvc?forum_id=10) … … 61 61 62 62 1. If you've worked with MVC frameworks before, the file structure for WP MVC will look refreshingly familiar. 63 2. Administration Menus are added automatically for each model, but they can be customized or omitted. 64 3. An example of the default "admin/index" view, which includes search functionality and pagination by default and can be customized. 65 4. An example of the default "admin/add" view. See the next screenshot for the code that creates it. 66 5. The code of the "admin/add" view in the previous screenshot. Forms can be easily created using the form helper, which includes an `input()` method that automatically determines the data type of the field and shows an appropriate input tag. Methods for most types of inputs (textareas, hidden inputs, select tags, checkboxes, etc) are also available, as are association-related input methods like `belongs_to_dropdown()` and has_many_dropdown()`.
Note: See TracChangeset
for help on using the changeset viewer.