Better @package/@subpackage assignment

pull/60/head
Aleksander Machniak 12 years ago
parent bd1e16f343
commit a6fd1578c3

@ -21,7 +21,7 @@
* Class for HTML code creation * Class for HTML code creation
* *
* @package Framework * @package Framework
* @subpackage HTML * @subpackage View
*/ */
class html class html
{ {
@ -340,7 +340,8 @@ class html
/** /**
* Class to create an HTML input field * Class to create an HTML input field
* *
* @package HTML * @package Framework
* @subpackage View
*/ */
class html_inputfield extends html class html_inputfield extends html
{ {
@ -396,7 +397,8 @@ class html_inputfield extends html
/** /**
* Class to create an HTML password field * Class to create an HTML password field
* *
* @package HTML * @package Framework
* @subpackage View
*/ */
class html_passwordfield extends html_inputfield class html_passwordfield extends html_inputfield
{ {
@ -406,9 +408,9 @@ class html_passwordfield extends html_inputfield
/** /**
* Class to create an hidden HTML input field * Class to create an hidden HTML input field
* *
* @package HTML * @package Framework
* @subpackage View
*/ */
class html_hiddenfield extends html class html_hiddenfield extends html
{ {
protected $tagname = 'input'; protected $tagname = 'input';
@ -456,7 +458,8 @@ class html_hiddenfield extends html
/** /**
* Class to create HTML radio buttons * Class to create HTML radio buttons
* *
* @package HTML * @package Framework
* @subpackage View
*/ */
class html_radiobutton extends html_inputfield class html_radiobutton extends html_inputfield
{ {
@ -486,7 +489,8 @@ class html_radiobutton extends html_inputfield
/** /**
* Class to create HTML checkboxes * Class to create HTML checkboxes
* *
* @package HTML * @package Framework
* @subpackage View
*/ */
class html_checkbox extends html_inputfield class html_checkbox extends html_inputfield
{ {
@ -516,7 +520,8 @@ class html_checkbox extends html_inputfield
/** /**
* Class to create an HTML textarea * Class to create an HTML textarea
* *
* @package HTML * @package Framework
* @subpackage View
*/ */
class html_textarea extends html class html_textarea extends html
{ {
@ -574,7 +579,8 @@ class html_textarea extends html
* print $select->show('CH'); * print $select->show('CH');
* </pre> * </pre>
* *
* @package HTML * @package Framework
* @subpackage View
*/ */
class html_select extends html class html_select extends html
{ {
@ -639,7 +645,8 @@ class html_select extends html
/** /**
* Class to build an HTML table * Class to build an HTML table
* *
* @package HTML * @package Framework
* @subpackage View
*/ */
class html_table extends html class html_table extends html
{ {

@ -21,7 +21,7 @@
* using a predefined base * using a predefined base
* *
* @package Framework * @package Framework
* @subpackage Core * @subpackage Utils
* @author Thomas Bruederli <roundcube@gmail.com> * @author Thomas Bruederli <roundcube@gmail.com>
*/ */
class rcube_base_replacer class rcube_base_replacer

@ -20,7 +20,7 @@
* Provide details about the client's browser based on the User-Agent header * Provide details about the client's browser based on the User-Agent header
* *
* @package Framework * @package Framework
* @subpackage Core * @subpackage Utils
*/ */
class rcube_browser class rcube_browser
{ {

@ -20,7 +20,7 @@
* PHP stream filter to detect html/javascript code in attachments * PHP stream filter to detect html/javascript code in attachments
* *
* @package Framework * @package Framework
* @subpackage Core * @subpackage Utils
*/ */
class rcube_content_filter extends php_user_filter class rcube_content_filter extends php_user_filter
{ {

Loading…
Cancel
Save