mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-02-07 12:36:25 +00:00
Merge pull request #221 from majna/2.0-doc-comments
Fixed doc block comments.
This commit is contained in:
commit
aa6d6a9918
4 changed files with 4 additions and 5 deletions
|
@ -75,7 +75,7 @@ class Scaffold {
|
||||||
public $request;
|
public $request;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* valid session.
|
* Valid session.
|
||||||
*
|
*
|
||||||
* @var boolean
|
* @var boolean
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -43,7 +43,7 @@
|
||||||
* You can inspect the currently loaded paths using `App::path('Controller')` for example to see loaded
|
* You can inspect the currently loaded paths using `App::path('Controller')` for example to see loaded
|
||||||
* controller paths.
|
* controller paths.
|
||||||
*
|
*
|
||||||
* It is also possible to inspect paths for plugin classes, for instance, to see a plugin's helpers you would call
|
* It is also possible to inspect paths for plugin classes, for instance, to see a plugin's helpers you would call
|
||||||
* `App::path('View/Helper', 'MyPlugin')`
|
* `App::path('View/Helper', 'MyPlugin')`
|
||||||
*
|
*
|
||||||
* ### Locating plugins and themes
|
* ### Locating plugins and themes
|
||||||
|
@ -251,7 +251,7 @@ class App {
|
||||||
*
|
*
|
||||||
* `App::build(array('Model' => array('/path/to/models/')), App::RESET); will setup the path as the only valid path for searching models`
|
* `App::build(array('Model' => array('/path/to/models/')), App::RESET); will setup the path as the only valid path for searching models`
|
||||||
*
|
*
|
||||||
* `App::build(array('View/Helper' => array('/path/to/helpers/', '/another/path/))); will setup multiple search paths for helpers`
|
* `App::build(array('View/Helper' => array('/path/to/helpers/', '/another/path/'))); will setup multiple search paths for helpers`
|
||||||
*
|
*
|
||||||
* If reset is set to true, all loaded plugins will be forgotten and they will be needed to be loaded again.
|
* If reset is set to true, all loaded plugins will be forgotten and they will be needed to be loaded again.
|
||||||
*
|
*
|
||||||
|
|
|
@ -412,7 +412,6 @@ class CakeSchema extends Object {
|
||||||
}
|
}
|
||||||
$col .= join(', ', $props);
|
$col .= join(', ', $props);
|
||||||
} elseif ($field == 'tableParameters') {
|
} elseif ($field == 'tableParameters') {
|
||||||
//@todo add charset, collate and engine here
|
|
||||||
$col = "\t\t'tableParameters' => array(";
|
$col = "\t\t'tableParameters' => array(";
|
||||||
$props = array();
|
$props = array();
|
||||||
foreach ((array)$value as $key => $param) {
|
foreach ((array)$value as $key => $param) {
|
||||||
|
|
|
@ -64,7 +64,7 @@ class PaginatorHelper extends AppHelper {
|
||||||
* - `update` DOM id of the element updated with the results of the AJAX call.
|
* - `update` DOM id of the element updated with the results of the AJAX call.
|
||||||
* If this key isn't specified Paginator will use plain HTML links.
|
* If this key isn't specified Paginator will use plain HTML links.
|
||||||
* - `paging['paramType']` The type of parameters to use when creating links. Valid options are
|
* - `paging['paramType']` The type of parameters to use when creating links. Valid options are
|
||||||
* 'querystring', 'named', and 'route'. See PaginatorComponent::$settings for more information.
|
* 'querystring' and 'named'. See PaginatorComponent::$settings for more information.
|
||||||
* - `convertKeys` - A list of keys in url arrays that should be converted to querysting params
|
* - `convertKeys` - A list of keys in url arrays that should be converted to querysting params
|
||||||
* if paramType == 'querystring'.
|
* if paramType == 'querystring'.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Add table
Reference in a new issue