Changeset 117 for trunk/trax/vendor/trax/action_view/helpers.php
- Timestamp:
- 01/18/06 18:45:19 (6 years ago)
- Files:
-
- 1 modified
-
trunk/trax/vendor/trax/action_view/helpers.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/trax/vendor/trax/action_view/helpers.php
r116 r117 1 <? 2 1 <?php 3 2 # $Id$ 4 3 # … … 117 116 } 118 117 118 119 ################################################################################################ 120 ## Avialble functions for use in views 121 ################################################################################################ 119 122 function content_tag() { 120 123 $helper = new Helpers(); … … 123 126 } 124 127 128 function url_for($options = array()) { 129 $helper = new Helpers(); 130 return $helper->url_for($options); 131 } 132 125 133 ?>
