Updating more @link tags.

This commit is contained in:
Mark Story 2010-03-28 11:34:58 -04:00
parent 8ff0b536d8
commit 45730d1bca
6 changed files with 29 additions and 29 deletions

View file

@ -27,7 +27,7 @@
* *
* @package cake * @package cake
* @subpackage cake.cake.console.libs * @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 { class BakeShell extends Shell {

View file

@ -28,7 +28,7 @@ App::import('Model', 'CakeSchema', false);
* *
* @package cake * @package cake
* @subpackage cake.cake.console.libs * @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 { class SchemaShell extends Shell {

View file

@ -23,14 +23,14 @@
* *
* @package cake * @package cake
* @subpackage cake.cake.libs * @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 { class Configure extends Object {
/** /**
* Current debug level. * 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 * @var integer
* @access public * @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 array $config Name of var to write
* @param mixed $value Value to set for var * @param mixed $value Value to set for var
* @return boolean True if write was successful * @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] * 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. * @param string $var Variable to obtain. Use '.' to access array elements.
* @return string value of Configure::$var * @return string value of Configure::$var
* @access public * @access public
@ -195,7 +195,7 @@ class Configure extends Object {
* Configure::delete('Name.key'); will delete only the Configure::Name[key] * 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 * @param string $var the var to be deleted
* @return void * @return void
* @access public * @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 app/config use `Configure::load('configure_file');`.
* - To load config files from a plugin `Configure::load('plugin.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 * @param string $fileName name of file to load, extension must be .php and only the name
* should be used, not the extenstion * should be used, not the extenstion
* @return mixed false if file not found, void if load successful * @return mixed false if file not found, void if load successful
@ -273,7 +273,7 @@ class Configure extends Object {
* *
* Usage `Configure::version();` * 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 * @return string Current version of CakePHP
* @access public * @access public
*/ */
@ -825,7 +825,7 @@ class App extends Object {
/** /**
* Finds classes based on $name or specific file(s) to search. * 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 * @param mixed $type The type of Class if passed as a string, or all params can be passed as
* an single array to $type, * an single array to $type,
* @param string $name Name of the Class or a unique name for the file * @param string $name Name of the Class or a unique name for the file

View file

@ -84,7 +84,7 @@ class Component extends Object {
* @param object $controller Controller with components to initialize * @param object $controller Controller with components to initialize
* @return void * @return void
* @access public * @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) { function initialize(&$controller) {
foreach (array_keys($this->_loaded) as $name) { foreach (array_keys($this->_loaded) as $name) {
@ -106,7 +106,7 @@ class Component extends Object {
* @param object $controller Controller with components to startup * @param object $controller Controller with components to startup
* @return void * @return void
* @access public * @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() * @deprecated See Component::triggerCallback()
*/ */
function startup(&$controller) { function startup(&$controller) {

View file

@ -41,7 +41,7 @@ if (!class_exists('String')) {
* *
* @package cake * @package cake
* @subpackage cake.cake.libs * @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 { class Debugger extends Object {
@ -210,7 +210,7 @@ class Debugger extends Object {
* @see exportVar * @see exportVar
* @access public * @access public
* @static * @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) { function dump($var) {
$_this =& Debugger::getInstance(); $_this =& Debugger::getInstance();
@ -225,7 +225,7 @@ class Debugger extends Object {
* @param $level int type of log to use. Defaults to LOG_DEBUG * @param $level int type of log to use. Defaults to LOG_DEBUG
* @return void * @return void
* @static * @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) { function log($var, $level = LOG_DEBUG) {
$_this =& Debugger::getInstance(); $_this =& Debugger::getInstance();
@ -324,7 +324,7 @@ class Debugger extends Object {
* @return string Formatted stack trace * @return string Formatted stack trace
* @access public * @access public
* @static * @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()) { function trace($options = array()) {
$_this =& Debugger::getInstance(); $_this =& Debugger::getInstance();
@ -436,7 +436,7 @@ class Debugger extends Object {
* @return array Set of lines highlighted * @return array Set of lines highlighted
* @access public * @access public
* @static * @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) { function excerpt($file, $line, $context = 2) {
$data = $lines = array(); $data = $lines = array();
@ -469,7 +469,7 @@ class Debugger extends Object {
* @return string Variable as a formatted string * @return string Variable as a formatted string
* @access public * @access public
* @static * @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) { function exportVar($var, $recursion = 0) {
$_this =& Debugger::getInstance(); $_this =& Debugger::getInstance();
@ -686,7 +686,7 @@ class Debugger extends Object {
* @param object $debugger A reference to the Debugger object * @param object $debugger A reference to the Debugger object
* @access public * @access public
* @static * @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) { function invoke(&$debugger) {
set_error_handler(array(&$debugger, 'handleError')); set_error_handler(array(&$debugger, 'handleError'));

View file

@ -28,7 +28,7 @@
* *
* @package cake * @package cake
* @subpackage cake.cake.libs * @subpackage cake.cake.libs
* @link http://book.cakephp.org/view/491/Inflector * @link http://book.cakephp.org/view/1478/Inflector
*/ */
class Inflector { class Inflector {
@ -348,7 +348,7 @@ class Inflector {
* @return string Word in plural * @return string Word in plural
* @access public * @access public
* @static * @static
* @link http://book.cakephp.org/view/572/Class-methods * @link http://book.cakephp.org/view/1479/Class-methods
*/ */
function pluralize($word) { function pluralize($word) {
$_this =& Inflector::getInstance(); $_this =& Inflector::getInstance();
@ -395,7 +395,7 @@ class Inflector {
* @return string Word in singular * @return string Word in singular
* @access public * @access public
* @static * @static
* @link http://book.cakephp.org/view/572/Class-methods * @link http://book.cakephp.org/view/1479/Class-methods
*/ */
function singularize($word) { function singularize($word) {
$_this =& Inflector::getInstance(); $_this =& Inflector::getInstance();
@ -444,7 +444,7 @@ class Inflector {
* @return string Camelized word. LikeThis. * @return string Camelized word. LikeThis.
* @access public * @access public
* @static * @static
* @link http://book.cakephp.org/view/572/Class-methods * @link http://book.cakephp.org/view/1479/Class-methods
*/ */
function camelize($lowerCaseAndUnderscoredWord) { function camelize($lowerCaseAndUnderscoredWord) {
$_this =& Inflector::getInstance(); $_this =& Inflector::getInstance();
@ -462,7 +462,7 @@ class Inflector {
* @return string Underscore-syntaxed version of the $camelCasedWord * @return string Underscore-syntaxed version of the $camelCasedWord
* @access public * @access public
* @static * @static
* @link http://book.cakephp.org/view/572/Class-methods * @link http://book.cakephp.org/view/1479/Class-methods
*/ */
function underscore($camelCasedWord) { function underscore($camelCasedWord) {
$_this =& Inflector::getInstance(); $_this =& Inflector::getInstance();
@ -481,7 +481,7 @@ class Inflector {
* @return string Human-readable string * @return string Human-readable string
* @access public * @access public
* @static * @static
* @link http://book.cakephp.org/view/572/Class-methods * @link http://book.cakephp.org/view/1479/Class-methods
*/ */
function humanize($lowerCaseAndUnderscoredWord) { function humanize($lowerCaseAndUnderscoredWord) {
$_this =& Inflector::getInstance(); $_this =& Inflector::getInstance();
@ -499,7 +499,7 @@ class Inflector {
* @return string Name of the database table for given class * @return string Name of the database table for given class
* @access public * @access public
* @static * @static
* @link http://book.cakephp.org/view/572/Class-methods * @link http://book.cakephp.org/view/1479/Class-methods
*/ */
function tableize($className) { function tableize($className) {
$_this =& Inflector::getInstance(); $_this =& Inflector::getInstance();
@ -517,7 +517,7 @@ class Inflector {
* @return string Class name * @return string Class name
* @access public * @access public
* @static * @static
* @link http://book.cakephp.org/view/572/Class-methods * @link http://book.cakephp.org/view/1479/Class-methods
*/ */
function classify($tableName) { function classify($tableName) {
$_this =& Inflector::getInstance(); $_this =& Inflector::getInstance();
@ -535,7 +535,7 @@ class Inflector {
* @return string in variable form * @return string in variable form
* @access public * @access public
* @static * @static
* @link http://book.cakephp.org/view/572/Class-methods * @link http://book.cakephp.org/view/1479/Class-methods
*/ */
function variable($string) { function variable($string) {
$_this =& Inflector::getInstance(); $_this =& Inflector::getInstance();
@ -559,7 +559,7 @@ class Inflector {
* @return string * @return string
* @access public * @access public
* @static * @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()) { function slug($string, $replacement = '_', $map = array()) {
$_this =& Inflector::getInstance(); $_this =& Inflector::getInstance();