1 | <?php |
||
18 | class AdminPageFramework_Form_View___ToolTip extends AdminPageFramework_Form_View___Section_Base { |
||
2 ignored issues
–
show
|
|||
19 | |||
20 | public $aArguments = array( |
||
21 | 'attributes' => array(), // attributes |
||
22 | 'icon' => null, // the icon output |
||
23 | 'title' => null, |
||
24 | 'content' => null, |
||
25 | ); |
||
26 | |||
27 | public $sTitleElementID; |
||
28 | |||
29 | /** |
||
30 | * Sets up properties. |
||
31 | * @since 3.6.0 |
||
32 | * @since DEVVER Changed the parameter structure. |
||
33 | */ |
||
34 | public function __construct( /* $aArguments, $sTitleElementID */ ) { |
||
48 | |||
49 | /** |
||
50 | * Returns HTML formatted description blocks by the given description definition. |
||
51 | * |
||
52 | * @return string The output. |
||
53 | */ |
||
54 | public function get() { |
||
69 | /** |
||
70 | * @since DEVVER |
||
71 | * @return string |
||
72 | */ |
||
73 | private function _getTipLinkIcon() { |
||
86 | /** |
||
87 | * @since DEVVER |
||
88 | * @return string |
||
89 | */ |
||
90 | private function _getTipTitle() { |
||
98 | /** |
||
99 | * @since DEVVER |
||
100 | * @return string |
||
101 | */ |
||
102 | private function _getDescriptions() { |
||
113 | |||
114 | } |
||
1 ignored issue
–
show
|
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.