Skip to content

Commit

Permalink
Fixing @see tags in JsEngines
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Mar 6, 2010
1 parent 63fcd22 commit 8216f50
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 14 deletions.
11 changes: 6 additions & 5 deletions cake/libs/view/helpers/jquery_engine.php
Expand Up @@ -245,6 +245,7 @@ function effect($name, $options = array()) {
* @param array $options See JsHelper::request() for options.
* @return string The completed ajax call.
* @access public
* @see JsBaseEngineHelper::request() for options list.
*/
function request($url, $options = array()) {
$url = $this->url($url);
Expand Down Expand Up @@ -282,7 +283,7 @@ function request($url, $options = array()) {
* @param array $options Array of options for the sortable.
* @return string Completed sortable script.
* @access public
* @see JsHelper::sortable() for options list.
* @see JsBaseEngineHelper::sortable() for options list.
*/
function sortable($options = array()) {
$template = '%s.sortable({%s});';
Expand All @@ -297,7 +298,7 @@ function sortable($options = array()) {
* @param array $options Array of options for the draggable element.
* @return string Completed Draggable script.
* @access public
* @see JsHelper::drag() for options list.
* @see JsBaseEngineHelper::drag() for options list.
*/
function drag($options = array()) {
$template = '%s.draggable({%s});';
Expand All @@ -312,7 +313,7 @@ function drag($options = array()) {
* @param array $options Array of options for the droppable element.
* @return string Completed Droppable script.
* @access public
* @see JsHelper::drop() for options list.
* @see JsBaseEngineHelper::drop() for options list.
*/
function drop($options = array()) {
$template = '%s.droppable({%s});';
Expand All @@ -327,7 +328,7 @@ function drop($options = array()) {
* @param array $options Array of options for the droppable element.
* @return string Completed Slider script.
* @access public
* @see JsHelper::slider() for options list.
* @see JsBaseEngineHelper::slider() for options list.
*/
function slider($options = array()) {
$callbacks = array('start', 'change', 'slide', 'stop');
Expand All @@ -342,7 +343,7 @@ function slider($options = array()) {
* @param array $options Options for the serialization
* @return string completed form serialization script.
* @access public
* @see JsHelper::serializeForm() for option list.
* @see JsBaseEngineHelper::serializeForm() for option list.
*/
function serializeForm($options = array()) {
$options = array_merge(array('isForm' => false, 'inline' => false), $options);
Expand Down
8 changes: 4 additions & 4 deletions cake/libs/view/helpers/mootools_engine.php
Expand Up @@ -269,7 +269,7 @@ function request($url, $options = array()) {
*
* @param array $options Array of options for the sortable.
* @return string Completed sortable script.
* @see JsHelper::sortable() for options list.
* @see JsBaseEngineHelper::sortable() for options list.
*/
function sortable($options = array()) {
$options = $this->_processOptions('sortable', $options);
Expand Down Expand Up @@ -302,7 +302,7 @@ function drag($options = array()) {
*
* @param array $options Array of options for the droppable.
* @return string Completed droppable script.
* @see JsHelper::drop() for options list.
* @see JsBaseEngineHelper::drop() for options list.
*/
function drop($options = array()) {
if (empty($options['drag'])) {
Expand Down Expand Up @@ -332,7 +332,7 @@ function drop($options = array()) {
*
* @param array $options Array of options for the slider.
* @return string Completed slider script.
* @see JsHelper::slider() for options list.
* @see JsBaseEngineHelper::slider() for options list.
*/
function slider($options = array()) {
$slider = $this->selection;
Expand All @@ -357,7 +357,7 @@ function slider($options = array()) {
*
* @param array $options Array of options.
* @return string Completed serializeForm() snippet
* @see JsHelper::serializeForm()
* @see JsBaseEngineHelper::serializeForm()
*/
function serializeForm($options = array()) {
$options = array_merge(array('isForm' => false, 'inline' => false), $options);
Expand Down
10 changes: 5 additions & 5 deletions cake/libs/view/helpers/prototype_engine.php
Expand Up @@ -265,7 +265,7 @@ function request($url, $options = array()) {
* @param array $options Array of options for the sortable.
* @return string Completed sortable script.
* @access public
* @see JsHelper::sortable() for options list.
* @see JsBaseEngineHelper::sortable() for options list.
*/
function sortable($options = array()) {
$options = $this->_processOptions('sortable', $options);
Expand All @@ -283,7 +283,7 @@ function sortable($options = array()) {
* @param array $options Array of options for the draggable.
* @return string Completed draggable script.
* @access public
* @see JsHelper::draggable() for options list.
* @see JsBaseEngineHelper::draggable() for options list.
*/
function drag($options = array()) {
$options = $this->_processOptions('drag', $options);
Expand All @@ -304,7 +304,7 @@ function drag($options = array()) {
* @param array $options Array of options for the droppable.
* @return string Completed droppable script.
* @access public
* @see JsHelper::droppable() for options list.
* @see JsBaseEngineHelper::droppable() for options list.
*/
function drop($options = array()) {
$options = $this->_processOptions('drop', $options);
Expand All @@ -322,7 +322,7 @@ function drop($options = array()) {
* @param array $options Array of options for the slider.
* @return string Completed slider script.
* @access public
* @see JsHelper::slider() for options list.
* @see JsBaseEngineHelper::slider() for options list.
*/
function slider($options = array()) {
$slider = $this->selection;
Expand All @@ -348,7 +348,7 @@ function slider($options = array()) {
* @param array $options Array of options.
* @return string Completed serializeForm() snippet
* @access public
* @see JsHelper::serializeForm()
* @see JsBaseEngineHelper::serializeForm()
*/
function serializeForm($options = array()) {
$options = array_merge(array('isForm' => false, 'inline' => false), $options);
Expand Down

0 comments on commit 8216f50

Please sign in to comment.