Improve some inline docs in preparation for API docs
This commit is contained in:
parent
5f91c45f79
commit
e54cf7133b
|
|
@ -47,7 +47,7 @@ class ListController extends ControllerBehavior
|
|||
protected $filterWidgets = [];
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
* @inheritDoc
|
||||
*/
|
||||
protected $requiredProperties = ['listConfig'];
|
||||
|
||||
|
|
|
|||
|
|
@ -6,19 +6,9 @@ use October\Rain\Halcyon\Model as HalcyonModel;
|
|||
use October\Rain\Database\Model as DatabaseModel;
|
||||
|
||||
/**
|
||||
* Form Model Saver Trait
|
||||
*
|
||||
* Special logic for applying form data (usually from postback) and
|
||||
* applying it to a model and its relationships. This is a customized,
|
||||
* safer and simplified version of $model->push().
|
||||
*
|
||||
* Usage:
|
||||
*
|
||||
* $modelsToSave = $this->prepareModelsToSave($model, [...]);
|
||||
*
|
||||
* foreach ($modelsToSave as $modelToSave) {
|
||||
* $modelToSave->save();
|
||||
* }
|
||||
* Implements special logic for processing form data, typically from from postback, and
|
||||
* filling the model attributes and attributes of any related models. This is a
|
||||
* customized, safer and simplified version of `$model->push()`.
|
||||
*
|
||||
* @package october\backend
|
||||
* @author Alexey Bobkov, Samuel Georges
|
||||
|
|
@ -31,6 +21,23 @@ trait FormModelSaver
|
|||
*/
|
||||
protected $modelsToSave = [];
|
||||
|
||||
/**
|
||||
* Takes a model and fills it with data from a multidimensional array.
|
||||
* If an attribute is found to be a relationship, that relationship
|
||||
* is also filled.
|
||||
*
|
||||
* $modelsToSave = $this->prepareModelsToSave($model, [...]);
|
||||
*
|
||||
* $test = 'cms.theme.getActiveTheme';
|
||||
*
|
||||
* foreach ($modelsToSave as $modelToSave) {
|
||||
* $modelToSave->save();
|
||||
* }
|
||||
*
|
||||
* @param \October\Rain\Database\Model $model Model to fill.
|
||||
* @param array $saveData Attribute values to fill model.
|
||||
* @return array The collection of models to save.
|
||||
*/
|
||||
protected function prepareModelsToSave($model, $saveData)
|
||||
{
|
||||
$this->modelsToSave = [];
|
||||
|
|
@ -40,9 +47,7 @@ trait FormModelSaver
|
|||
|
||||
/**
|
||||
* Sets a data collection to a model attributes, relations will also be set.
|
||||
* @param array $saveData Data to save.
|
||||
* @param \October\Rain\Database\Model $model Model to save to
|
||||
* @return array The collection of models to save.
|
||||
* @return void
|
||||
*/
|
||||
protected function setModelAttributes($model, $saveData)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -141,7 +141,7 @@ class Theme
|
|||
/**
|
||||
* Returns the active theme code.
|
||||
* By default the active theme is loaded from the cms.activeTheme parameter,
|
||||
* but this behavior can be overridden by the cms.theme.getActiveTheme event listeners.
|
||||
* but this behavior can be overridden by the cms.theme.getActiveTheme event listener.
|
||||
* @return string
|
||||
* If the theme doesn't exist, returns null.
|
||||
*/
|
||||
|
|
@ -171,6 +171,16 @@ class Theme
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @event cms.theme.getActiveTheme
|
||||
* Overrides the active theme code.
|
||||
*
|
||||
* If a value is returned from this halting event, it will be used as the active
|
||||
* theme code. Example usage:
|
||||
*
|
||||
* Event::listen('cms.theme.getActiveTheme', function() { return 'mytheme'; });
|
||||
*
|
||||
*/
|
||||
$apiResult = Event::fire('cms.theme.getActiveTheme', [], true);
|
||||
if ($apiResult !== null) {
|
||||
$activeTheme = $apiResult;
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ trait AssetMaker
|
|||
}
|
||||
|
||||
/**
|
||||
* Outputs <link> and <script> tags to load assets previously added with addJs and addCss method calls
|
||||
* Outputs `<link>` and `<script>` tags to load assets previously added with addJs and addCss method calls
|
||||
* @param string $type Return an asset collection of a given type (css, rss, js) or null for all.
|
||||
* @return string
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -20,13 +20,13 @@ trait EventEmitter
|
|||
*
|
||||
* For example:
|
||||
*
|
||||
* $this->fireSystemEvent('backend.list.myEvent', ['my value']);
|
||||
* $this->fireSystemEvent('backend.list.myEvent', ['my value']);
|
||||
*
|
||||
* Is equivalent to:
|
||||
*
|
||||
* $this->fireEvent('list.myEvent', ['myvalue'], true);
|
||||
* $this->fireEvent('list.myEvent', ['myvalue'], true);
|
||||
*
|
||||
* Event::fire('backend.list.myEvent', [$this, 'myvalue'], true);
|
||||
* Event::fire('backend.list.myEvent', [$this, 'myvalue'], true);
|
||||
*
|
||||
* @param string $event Event name
|
||||
* @param array $params Event parameters
|
||||
|
|
|
|||
Loading…
Reference in New Issue