mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 09:06:17 +00:00
Updating more @link tags.
This commit is contained in:
parent
8ff0b536d8
commit
45730d1bca
6 changed files with 29 additions and 29 deletions
|
@ -27,7 +27,7 @@
|
|||
*
|
||||
* @package cake
|
||||
* @subpackage cake.cake.console.libs
|
||||
* @link http://book.cakephp.org/view/113/Code-Generation-with-Bake
|
||||
* @link http://book.cakephp.org/view/1522/Code-Generation-with-Bake
|
||||
*/
|
||||
class BakeShell extends Shell {
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ App::import('Model', 'CakeSchema', false);
|
|||
*
|
||||
* @package cake
|
||||
* @subpackage cake.cake.console.libs
|
||||
* @link http://book.cakephp.org/view/734/Schema-management-and-migrations
|
||||
* @link http://book.cakephp.org/view/1523s/Schema-management-and-migrations
|
||||
*/
|
||||
class SchemaShell extends Shell {
|
||||
|
||||
|
|
|
@ -23,14 +23,14 @@
|
|||
*
|
||||
* @package cake
|
||||
* @subpackage cake.cake.libs
|
||||
* @link http://book.cakephp.org/view/42/The-Configuration-Class
|
||||
* @link http://book.cakephp.org/view/924/The-Configuration-Class
|
||||
*/
|
||||
class Configure extends Object {
|
||||
|
||||
/**
|
||||
* Current debug level.
|
||||
*
|
||||
* @link http://book.cakephp.org/view/44/CakePHP-Core-Configuration-Variables
|
||||
* @link http://book.cakephp.org/view/931/CakePHP-Core-Configuration-Variables
|
||||
* @var integer
|
||||
* @access public
|
||||
*/
|
||||
|
@ -72,7 +72,7 @@ class Configure extends Object {
|
|||
* ));
|
||||
* }}}
|
||||
*
|
||||
* @link http://book.cakephp.org/view/412/write
|
||||
* @link http://book.cakephp.org/view/926/write
|
||||
* @param array $config Name of var to write
|
||||
* @param mixed $value Value to set for var
|
||||
* @return boolean True if write was successful
|
||||
|
@ -145,7 +145,7 @@ class Configure extends Object {
|
|||
* Configure::read('Name.key'); will return only the value of Configure::Name[key]
|
||||
* }}}
|
||||
*
|
||||
* @link http://book.cakephp.org/view/413/read
|
||||
* @link http://book.cakephp.org/view/927/read
|
||||
* @param string $var Variable to obtain. Use '.' to access array elements.
|
||||
* @return string value of Configure::$var
|
||||
* @access public
|
||||
|
@ -195,7 +195,7 @@ class Configure extends Object {
|
|||
* Configure::delete('Name.key'); will delete only the Configure::Name[key]
|
||||
* }}}
|
||||
*
|
||||
* @link http://book.cakephp.org/view/414/delete
|
||||
* @link http://book.cakephp.org/view/928/delete
|
||||
* @param string $var the var to be deleted
|
||||
* @return void
|
||||
* @access public
|
||||
|
@ -222,7 +222,7 @@ class Configure extends Object {
|
|||
* - To load config files from app/config use `Configure::load('configure_file');`.
|
||||
* - To load config files from a plugin `Configure::load('plugin.configure_file');`.
|
||||
*
|
||||
* @link http://book.cakephp.org/view/415/load
|
||||
* @link http://book.cakephp.org/view/929/load
|
||||
* @param string $fileName name of file to load, extension must be .php and only the name
|
||||
* should be used, not the extenstion
|
||||
* @return mixed false if file not found, void if load successful
|
||||
|
@ -273,7 +273,7 @@ class Configure extends Object {
|
|||
*
|
||||
* Usage `Configure::version();`
|
||||
*
|
||||
* @link http://book.cakephp.org/view/416/version
|
||||
* @link http://book.cakephp.org/view/930/version
|
||||
* @return string Current version of CakePHP
|
||||
* @access public
|
||||
*/
|
||||
|
@ -825,7 +825,7 @@ class App extends Object {
|
|||
/**
|
||||
* Finds classes based on $name or specific file(s) to search.
|
||||
*
|
||||
* @link http://book.cakephp.org/view/529/Using-App-import
|
||||
* @link http://book.cakephp.org/view/934/Using-App-import
|
||||
* @param mixed $type The type of Class if passed as a string, or all params can be passed as
|
||||
* an single array to $type,
|
||||
* @param string $name Name of the Class or a unique name for the file
|
||||
|
|
|
@ -84,7 +84,7 @@ class Component extends Object {
|
|||
* @param object $controller Controller with components to initialize
|
||||
* @return void
|
||||
* @access public
|
||||
* @link http://book.cakephp.org/view/65/MVC-Class-Access-Within-Components
|
||||
* @link http://book.cakephp.org/view/998/MVC-Class-Access-Within-Components
|
||||
*/
|
||||
function initialize(&$controller) {
|
||||
foreach (array_keys($this->_loaded) as $name) {
|
||||
|
@ -106,7 +106,7 @@ class Component extends Object {
|
|||
* @param object $controller Controller with components to startup
|
||||
* @return void
|
||||
* @access public
|
||||
* @link http://book.cakephp.org/view/65/MVC-Class-Access-Within-Components
|
||||
* @link http://book.cakephp.org/view/998/MVC-Class-Access-Within-Components
|
||||
* @deprecated See Component::triggerCallback()
|
||||
*/
|
||||
function startup(&$controller) {
|
||||
|
|
|
@ -41,7 +41,7 @@ if (!class_exists('String')) {
|
|||
*
|
||||
* @package cake
|
||||
* @subpackage cake.cake.libs
|
||||
* @link http://book.cakephp.org/view/460/Using-the-Debugger-Class
|
||||
* @link http://book.cakephp.org/view/1191/Using-the-Debugger-Class
|
||||
*/
|
||||
class Debugger extends Object {
|
||||
|
||||
|
@ -210,7 +210,7 @@ class Debugger extends Object {
|
|||
* @see exportVar
|
||||
* @access public
|
||||
* @static
|
||||
* @link http://book.cakephp.org/view/460/Using-the-Debugger-Class
|
||||
* @link http://book.cakephp.org/view/1191/Using-the-Debugger-Class
|
||||
*/
|
||||
function dump($var) {
|
||||
$_this =& Debugger::getInstance();
|
||||
|
@ -225,7 +225,7 @@ class Debugger extends Object {
|
|||
* @param $level int type of log to use. Defaults to LOG_DEBUG
|
||||
* @return void
|
||||
* @static
|
||||
* @link http://book.cakephp.org/view/460/Using-the-Debugger-Class
|
||||
* @link http://book.cakephp.org/view/1191/Using-the-Debugger-Class
|
||||
*/
|
||||
function log($var, $level = LOG_DEBUG) {
|
||||
$_this =& Debugger::getInstance();
|
||||
|
@ -324,7 +324,7 @@ class Debugger extends Object {
|
|||
* @return string Formatted stack trace
|
||||
* @access public
|
||||
* @static
|
||||
* @link http://book.cakephp.org/view/460/Using-the-Debugger-Class
|
||||
* @link http://book.cakephp.org/view/1191/Using-the-Debugger-Class
|
||||
*/
|
||||
function trace($options = array()) {
|
||||
$_this =& Debugger::getInstance();
|
||||
|
@ -436,7 +436,7 @@ class Debugger extends Object {
|
|||
* @return array Set of lines highlighted
|
||||
* @access public
|
||||
* @static
|
||||
* @link http://book.cakephp.org/view/460/Using-the-Debugger-Class
|
||||
* @link http://book.cakephp.org/view/1191/Using-the-Debugger-Class
|
||||
*/
|
||||
function excerpt($file, $line, $context = 2) {
|
||||
$data = $lines = array();
|
||||
|
@ -469,7 +469,7 @@ class Debugger extends Object {
|
|||
* @return string Variable as a formatted string
|
||||
* @access public
|
||||
* @static
|
||||
* @link http://book.cakephp.org/view/460/Using-the-Debugger-Class
|
||||
* @link http://book.cakephp.org/view/1191/Using-the-Debugger-Class
|
||||
*/
|
||||
function exportVar($var, $recursion = 0) {
|
||||
$_this =& Debugger::getInstance();
|
||||
|
@ -686,7 +686,7 @@ class Debugger extends Object {
|
|||
* @param object $debugger A reference to the Debugger object
|
||||
* @access public
|
||||
* @static
|
||||
* @link http://book.cakephp.org/view/460/Using-the-Debugger-Class
|
||||
* @link http://book.cakephp.org/view/1191/Using-the-Debugger-Class
|
||||
*/
|
||||
function invoke(&$debugger) {
|
||||
set_error_handler(array(&$debugger, 'handleError'));
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
*
|
||||
* @package cake
|
||||
* @subpackage cake.cake.libs
|
||||
* @link http://book.cakephp.org/view/491/Inflector
|
||||
* @link http://book.cakephp.org/view/1478/Inflector
|
||||
*/
|
||||
class Inflector {
|
||||
|
||||
|
@ -348,7 +348,7 @@ class Inflector {
|
|||
* @return string Word in plural
|
||||
* @access public
|
||||
* @static
|
||||
* @link http://book.cakephp.org/view/572/Class-methods
|
||||
* @link http://book.cakephp.org/view/1479/Class-methods
|
||||
*/
|
||||
function pluralize($word) {
|
||||
$_this =& Inflector::getInstance();
|
||||
|
@ -395,7 +395,7 @@ class Inflector {
|
|||
* @return string Word in singular
|
||||
* @access public
|
||||
* @static
|
||||
* @link http://book.cakephp.org/view/572/Class-methods
|
||||
* @link http://book.cakephp.org/view/1479/Class-methods
|
||||
*/
|
||||
function singularize($word) {
|
||||
$_this =& Inflector::getInstance();
|
||||
|
@ -444,7 +444,7 @@ class Inflector {
|
|||
* @return string Camelized word. LikeThis.
|
||||
* @access public
|
||||
* @static
|
||||
* @link http://book.cakephp.org/view/572/Class-methods
|
||||
* @link http://book.cakephp.org/view/1479/Class-methods
|
||||
*/
|
||||
function camelize($lowerCaseAndUnderscoredWord) {
|
||||
$_this =& Inflector::getInstance();
|
||||
|
@ -462,7 +462,7 @@ class Inflector {
|
|||
* @return string Underscore-syntaxed version of the $camelCasedWord
|
||||
* @access public
|
||||
* @static
|
||||
* @link http://book.cakephp.org/view/572/Class-methods
|
||||
* @link http://book.cakephp.org/view/1479/Class-methods
|
||||
*/
|
||||
function underscore($camelCasedWord) {
|
||||
$_this =& Inflector::getInstance();
|
||||
|
@ -481,7 +481,7 @@ class Inflector {
|
|||
* @return string Human-readable string
|
||||
* @access public
|
||||
* @static
|
||||
* @link http://book.cakephp.org/view/572/Class-methods
|
||||
* @link http://book.cakephp.org/view/1479/Class-methods
|
||||
*/
|
||||
function humanize($lowerCaseAndUnderscoredWord) {
|
||||
$_this =& Inflector::getInstance();
|
||||
|
@ -499,7 +499,7 @@ class Inflector {
|
|||
* @return string Name of the database table for given class
|
||||
* @access public
|
||||
* @static
|
||||
* @link http://book.cakephp.org/view/572/Class-methods
|
||||
* @link http://book.cakephp.org/view/1479/Class-methods
|
||||
*/
|
||||
function tableize($className) {
|
||||
$_this =& Inflector::getInstance();
|
||||
|
@ -517,7 +517,7 @@ class Inflector {
|
|||
* @return string Class name
|
||||
* @access public
|
||||
* @static
|
||||
* @link http://book.cakephp.org/view/572/Class-methods
|
||||
* @link http://book.cakephp.org/view/1479/Class-methods
|
||||
*/
|
||||
function classify($tableName) {
|
||||
$_this =& Inflector::getInstance();
|
||||
|
@ -535,7 +535,7 @@ class Inflector {
|
|||
* @return string in variable form
|
||||
* @access public
|
||||
* @static
|
||||
* @link http://book.cakephp.org/view/572/Class-methods
|
||||
* @link http://book.cakephp.org/view/1479/Class-methods
|
||||
*/
|
||||
function variable($string) {
|
||||
$_this =& Inflector::getInstance();
|
||||
|
@ -559,7 +559,7 @@ class Inflector {
|
|||
* @return string
|
||||
* @access public
|
||||
* @static
|
||||
* @link http://book.cakephp.org/view/572/Class-methods
|
||||
* @link http://book.cakephp.org/view/1479/Class-methods
|
||||
*/
|
||||
function slug($string, $replacement = '_', $map = array()) {
|
||||
$_this =& Inflector::getInstance();
|
||||
|
|
Loading…
Add table
Reference in a new issue