Skip to content

Commit

Permalink
Fixing docblocks in HtmlHelper
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@8048 3807eeeb-6ff5-0310-8944-8be069107fe0
  • Loading branch information
markstory committed Feb 18, 2009
1 parent 42ef8bf commit 01340e8
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions cake/libs/view/helpers/html.php
Expand Up @@ -189,7 +189,7 @@ function docType($type = 'xhtml-strict') {
/**
* Creates a link to an external resource and handles basic meta tags
*
* @param string $title The title of the external resource
* @param string $type The title of the external resource
* @param mixed $url The address of the external resource or string for content attribute
* @param array $attributes Other attributes for the generated tag. If the type attribute is html, rss, atom, or icon, the mime-type is returned.
* @param boolean $inline If set to false, the generated tag appears in the head tag of the layout.
Expand Down Expand Up @@ -380,7 +380,8 @@ function css($path, $rel = null, $htmlAttributes = array(), $inline = true) {
/**
* Builds CSS style data from an array of CSS properties
*
* @param array $data
* @param array $data Style data array
* @param boolean $inline Whether or not the style block should be displayed inline
* @return string CSS styling data
*/
function style($data, $inline = true) {
Expand Down Expand Up @@ -426,7 +427,7 @@ function getCrumbs($separator = '»', $startText = false) {
* Creates a formatted IMG element.
*
* @param string $path Path to the image file, relative to the app/webroot/img/ directory.
* @param array $htmlAttributes Array of HTML attributes.
* @param array $options Array of HTML attributes.
* @return string
*/
function image($path, $options = array()) {
Expand Down

0 comments on commit 01340e8

Please sign in to comment.