Merge pull request #2946 from Icinga/bugfix/enhance-code-autocompletion-in-ides-2945
Enhance code autocompletion in IDEs
This commit is contained in:
commit
46014558e6
|
@ -17,6 +17,8 @@ use Icinga\Web\Widget\SortBox;
|
||||||
* This is the controller all modules should inherit from
|
* This is the controller all modules should inherit from
|
||||||
* We will flip code with the ModuleActionController as soon as a couple
|
* We will flip code with the ModuleActionController as soon as a couple
|
||||||
* of pending feature branches are merged back to the master.
|
* of pending feature branches are merged back to the master.
|
||||||
|
*
|
||||||
|
* @property View $view
|
||||||
*/
|
*/
|
||||||
class Controller extends ModuleActionController
|
class Controller extends ModuleActionController
|
||||||
{
|
{
|
||||||
|
|
|
@ -11,6 +11,45 @@ use Icinga\Util\Translator;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Icinga view
|
* Icinga view
|
||||||
|
*
|
||||||
|
* @method Url href($path = null, $params = null) {
|
||||||
|
* @param Url|string|null $path
|
||||||
|
* @param string[string]|null $params
|
||||||
|
* }
|
||||||
|
*
|
||||||
|
* @method Url url($path = null, $params = null) {
|
||||||
|
* @param Url|string|null $path
|
||||||
|
* @param string[string]|null $params
|
||||||
|
* }
|
||||||
|
*
|
||||||
|
* @method Url qlink($title, $url, $params = null, $properties = null, $escape = true) {
|
||||||
|
* @param string $title
|
||||||
|
* @param Url|string|null $url
|
||||||
|
* @param string[string]|null $params
|
||||||
|
* @param string[string]|null $properties
|
||||||
|
* @param bool $escape
|
||||||
|
* }
|
||||||
|
*
|
||||||
|
* @method string img($url, $params = null, array $properties = array()) {
|
||||||
|
* @param Url|string|null $url
|
||||||
|
* @param string[string]|null $params
|
||||||
|
* @param string[string] $properties
|
||||||
|
* }
|
||||||
|
*
|
||||||
|
* @method string icon($img, $title = null, array $properties = array()) {
|
||||||
|
* @param string $img
|
||||||
|
* @param string|null $title
|
||||||
|
* @param string[string] $properties
|
||||||
|
* }
|
||||||
|
*
|
||||||
|
* @method string propertiesToString($properties) {
|
||||||
|
* @param string[string] $properties
|
||||||
|
* }
|
||||||
|
*
|
||||||
|
* @method string attributeToString($key, $value) {
|
||||||
|
* @param string $key
|
||||||
|
* @param string $value
|
||||||
|
* }
|
||||||
*/
|
*/
|
||||||
class View extends Zend_View_Abstract
|
class View extends Zend_View_Abstract
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue