commenting one more file, before going to bed.

git-svn-id: https://svn.cakephp.org/repo/trunk/cake@139 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
brego 2005-05-17 22:58:16 +00:00
parent 2f71ce4e4a
commit ea0191d321

View file

@ -14,8 +14,8 @@
//////////////////////////////////////////////////////////////////////////
/**
* Purpose: paths.php
* Enter description here...
* In this file, you can set up 'templates' for every tag generated by the tag
* generator.
*
* @filesource
* @author Cake Authors/Developers
@ -31,98 +31,98 @@
*/
/**
* Enter description here...
*
*/
* Tag template for a link.
*/
define('TAG_LINK', '<a href="%s"%s>%s</a>');
/**
* Enter description here...
*
*/
* Tag template for openning form tag.
*/
define('TAG_FORM', '<form %s>');
/**
* Enter description here...
*
*/
* Tag template for an input tag.
*/
define('TAG_INPUT', '<input name="data[%s]" %s/>');
/**
* Enter description here...
*
*/
* Tag template for a hidden tag.
*/
define('TAG_HIDDEN', '<input type="hidden" name="data[%s]" %s/>');
/**
* Enter description here...
*
*/
* Tag template for a textarea tag.
*/
define('TAG_AREA', '<textarea name="data[%s]"%s>%s</textarea>');
/**
* Enter description here...
*
*/
* Tag template for a checkbox input tag.
*/
define('TAG_CHECKBOX', '<label for="tag_%s"><input type="checkbox" name="data[%s]" id="tag_%s" %s/>%s</label>');
/**
* Enter description here...
*
*/
* Tag template for a radio input tag.
*/
define('TAG_RADIOS', '<label for="tag_%s"><input type="radio" name="data[%s]" id="tag_%s" %s/>%s</label>');
/**
* Enter description here...
*
*/
* Tag template for a select openning tag.
*/
define('TAG_SELECT_START', '<select name="data[%s]"%s>');
/**
* Enter description here...
*
*/
* Tag template for an empty select option tag.
*/
define('TAG_SELECT_EMPTY', '<option value=""%s></option>');
/**
* Enter description here...
*
*/
* Tag template for a select option tag.
*/
define('TAG_SELECT_OPTION','<option value="%s"%s>%s</option>');
/**
* Enter description here...
*
*/
* Tag template for a closing select tag.
*/
define('TAG_SELECT_END', '</select>');
/**
* Enter description here...
*
*/
* Tag template for a password tag.
*/
define('TAG_PASSWORD', '<input type="password" name="data[%s]" %s/>');
/**
* Enter description here...
*
*/
* Tag template for a file input tag.
*/
define('TAG_FILE', '<input type="file" name="%s" %s/>');
/**
* Enter description here...
*
*/
* Tag template for a submit tag.
*/
define('TAG_SUBMIT', '<input type="submit" %s/>');
/**
* Enter description here...
*
*/
* Tag template for an image tag.
*/
define('TAG_IMAGE', '<img src="%s" alt="%s" %s/>');
/**
* Enter description here...
*
*/
* Tag template for a table header tag.
*/
define('TAG_TABLE_HEADER', '<th%s>%s</th>');
/**
* Enter description here...
*
*/
* Tag template for table headers row tag.
*/
define('TAG_TABLE_HEADERS','<tr%s>%s</tr>');
/**
* Enter description here...
*
*/
* Tag template for a table cell tag.
*/
define('TAG_TABLE_CELL', '<td%s>%s</td>');
/**
* Enter description here...
*
*/
* Tag template for a table row tag.
*/
define('TAG_TABLE_ROW', '<tr%s>%s</tr>');
?>
?>