-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathView.php
74 lines (65 loc) · 2.45 KB
/
View.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?php
/*
START LICENSE AND COPYRIGHT
This file is part of ZfExtended library
Copyright (c) 2013 - 2021 Marc Mittag; MittagQI - Quality Informatics; All rights reserved.
Contact: http://www.MittagQI.com/ / service (ATT) MittagQI.com
This file may be used under the terms of the GNU LESSER GENERAL PUBLIC LICENSE version 3
as published by the Free Software Foundation and appearing in the file lgpl3-license.txt
included in the packaging of this file. Please review the following information
to ensure the GNU LESSER GENERAL PUBLIC LICENSE version 3.0 requirements will be met:
https://www.gnu.org/licenses/lgpl-3.0.txt
@copyright Marc Mittag, MittagQI - Quality Informatics
@author MittagQI - Quality Informatics
@license GNU LESSER GENERAL PUBLIC LICENSE version 3
https://www.gnu.org/licenses/lgpl-3.0.txt
END LICENSE AND COPYRIGHT
*/
/**#@+
* @author Marc Mittag
* @package ZfExtended
* @version 2.0
*
*/
/**
* Synthetic class for documentation purposes
* Adds hints to IDE autocompletion
* @see ZfExtended_RestController
* @see Zend_View_Interface
*
* @property array rows entities that resulted from an SQL query
* @property string result
* @property stdClass metaData
* @property array<string> errors
* @property boolean success
* @property string publicModulePath
* @property string pathToIMAGES
* @property string userTheme
* @property string extJsCss
* @property string extJsBasepath
* @property int extJsVersion
* @property string buildType
* @property string locale
* @property string appVersion
* @property array|mixed validationResults
* @property bool enableJsLogger
* @see Editor_IndexController::indexAction
*
* @method ZfExtended_View_Helper_PluginLocale PluginLocale()
* @method ZfExtended_View_Helper_Php2JsVars Php2JsVars()
* @method ZfExtended_View_Helper_TemplateApply TemplateApply()
* @method ZfExtended_View_Helper_MailEmployeeSalutation MailEmployeeSalutation()
*/
class ZfExtended_View extends Zend_View implements Zend_View_Interface
{
/**
* @var Zend_Db_Table_Select[]|stdClass[]|stdClass
* @see ZfExtended_Models_Entity_Abstract::loadAll, ZfExtended_RestController::indexAction and override
* @see ZfExtended_Models_Entity_Abstract::getDataObject, ZfExtended_RestController::postAction,ZfExtended_RestController::putAction and overrides
*/
public array|object $rows;
/**
* @var int - total amount of rows for a given sql statement
*/
public int $total;
}