mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Adding omitted documentation information.
This commit is contained in:
parent
ec5ad93a68
commit
e5df32e9d9
3 changed files with 34 additions and 12 deletions
|
@ -544,11 +544,17 @@ if (!class_exists('ThemeView')) {
|
|||
App::import('View', 'Theme');
|
||||
}
|
||||
|
||||
/**
|
||||
* ScaffoldView provides specific view file loading features for scaffolded views.
|
||||
*
|
||||
* @package cake.libs.view
|
||||
*/
|
||||
class ScaffoldView extends ThemeView {
|
||||
|
||||
/**
|
||||
* Override _getViewFileName
|
||||
* Override _getViewFileName Appends special scaffolding views in.
|
||||
*
|
||||
* @param string $name name of the view file to get.
|
||||
* @return string action
|
||||
* @access protected
|
||||
*/
|
||||
|
|
|
@ -29,6 +29,8 @@ class TranslateBehavior extends ModelBehavior {
|
|||
|
||||
/**
|
||||
* Used for runtime configuration of model
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
var $runtime = array();
|
||||
|
||||
|
@ -45,7 +47,8 @@ class TranslateBehavior extends ModelBehavior {
|
|||
* $config could be empty - and translations configured dynamically by
|
||||
* bindTranslation() method
|
||||
*
|
||||
* @param array $config
|
||||
* @param Model $model Model the behavior is being attached to.
|
||||
* @param array $config Array of configuration information.
|
||||
* @return mixed
|
||||
* @access public
|
||||
*/
|
||||
|
@ -66,8 +69,9 @@ class TranslateBehavior extends ModelBehavior {
|
|||
}
|
||||
|
||||
/**
|
||||
* Callback
|
||||
* Cleanup Callback unbinds bound translations and deletes setting information.
|
||||
*
|
||||
* @param Model $model Model being detached.
|
||||
* @return void
|
||||
* @access public
|
||||
*/
|
||||
|
@ -80,7 +84,8 @@ class TranslateBehavior extends ModelBehavior {
|
|||
/**
|
||||
* beforeFind Callback
|
||||
*
|
||||
* @param array $query
|
||||
* @param Model $model Model find is being run on.
|
||||
* @param array $query Array of Query parameters.
|
||||
* @return array Modified query
|
||||
* @access public
|
||||
*/
|
||||
|
@ -205,8 +210,9 @@ class TranslateBehavior extends ModelBehavior {
|
|||
/**
|
||||
* afterFind Callback
|
||||
*
|
||||
* @param array $results
|
||||
* @param boolean $primary
|
||||
* @param Model $model Model find was run on
|
||||
* @param array $results Array of model results.
|
||||
* @param boolean $primary Did the find originate on $model.
|
||||
* @return array Modified results
|
||||
* @access public
|
||||
*/
|
||||
|
@ -250,6 +256,7 @@ class TranslateBehavior extends ModelBehavior {
|
|||
/**
|
||||
* beforeValidate Callback
|
||||
*
|
||||
* @param Model $model Model invalidFields was called on.
|
||||
* @return boolean
|
||||
* @access public
|
||||
*/
|
||||
|
@ -283,7 +290,8 @@ class TranslateBehavior extends ModelBehavior {
|
|||
/**
|
||||
* afterSave Callback
|
||||
*
|
||||
* @param boolean $created
|
||||
* @param Model $model Model the callback is called on
|
||||
* @param boolean $created Whether or not the save created a record.
|
||||
* @return void
|
||||
* @access public
|
||||
*/
|
||||
|
@ -327,6 +335,7 @@ class TranslateBehavior extends ModelBehavior {
|
|||
/**
|
||||
* afterDelete Callback
|
||||
*
|
||||
* @param Model $model Model the callback was run on.
|
||||
* @return void
|
||||
* @access public
|
||||
*/
|
||||
|
@ -339,6 +348,7 @@ class TranslateBehavior extends ModelBehavior {
|
|||
/**
|
||||
* Get selected locale for model
|
||||
*
|
||||
* @param Model $model Model the locale needs to be set/get on.
|
||||
* @return mixed string or false
|
||||
* @access protected
|
||||
*/
|
||||
|
@ -356,8 +366,12 @@ class TranslateBehavior extends ModelBehavior {
|
|||
}
|
||||
|
||||
/**
|
||||
* Get instance of model for translations
|
||||
* Get instance of model for translations.
|
||||
*
|
||||
* If the model has a translateModel property set, this will be used as the class
|
||||
* name to find/use. If no translateModel property is found 'I18nModel' will be used.
|
||||
*
|
||||
* @param Model $model Model to get a translatemodel for.
|
||||
* @return object
|
||||
* @access public
|
||||
*/
|
||||
|
@ -461,8 +475,9 @@ class TranslateBehavior extends ModelBehavior {
|
|||
* Unbind translation for fields, optionally unbinds hasMany association for
|
||||
* fake field
|
||||
*
|
||||
* @param object instance of model
|
||||
* @param mixed string with field, or array(field1, field2=>AssocName, field3), or null for unbind all original translations
|
||||
* @param object $model instance of model
|
||||
* @param mixed $fields string with field, or array(field1, field2=>AssocName, field3), or null for
|
||||
* unbind all original translations
|
||||
* @return bool
|
||||
*/
|
||||
function unbindTranslation(&$model, $fields = null) {
|
||||
|
|
|
@ -35,7 +35,8 @@ class ThemeView extends View {
|
|||
/**
|
||||
* Constructor for ThemeView sets $this->theme.
|
||||
*
|
||||
* @param Controller $controller
|
||||
* @param Controller $controller Controller object to be rendered.
|
||||
* @param boolean $register Should the view be registered in the registry.
|
||||
*/
|
||||
function __construct(&$controller, $register = true) {
|
||||
parent::__construct($controller, $register);
|
||||
|
@ -45,7 +46,7 @@ class ThemeView extends View {
|
|||
/**
|
||||
* Return all possible paths to find view files in order
|
||||
*
|
||||
* @param string $plugin
|
||||
* @param string $plugin The name of the plugin views are being found for.
|
||||
* @param boolean $cached Set to true to force dir scan.
|
||||
* @return array paths
|
||||
* @access protected
|
||||
|
|
Loading…
Reference in a new issue