Define @package and @subpackage of Framework classes

pull/46/merge
Aleksander Machniak 12 years ago
parent 92bd3a7c3f
commit 9ab34604d9

@ -23,7 +23,8 @@
/** /**
* Class for HTML code creation * Class for HTML code creation
* *
* @package HTML * @package Framework
* @subpackage HTML
*/ */
class html class html
{ {

@ -23,7 +23,8 @@
/** /**
* Abstract skeleton of an address book/repository * Abstract skeleton of an address book/repository
* *
* @package Addressbook * @package Framework
* @subpackage Addressbook
*/ */
abstract class rcube_addressbook abstract class rcube_addressbook
{ {

@ -23,8 +23,9 @@
* Helper class to turn relative urls into absolute ones * Helper class to turn relative urls into absolute ones
* using a predefined base * using a predefined base
* *
* @package Core * @package Framework
* @author Thomas Bruederli <roundcube@gmail.com> * @subpackage Core
* @author Thomas Bruederli <roundcube@gmail.com>
*/ */
class rcube_base_replacer class rcube_base_replacer
{ {

@ -22,7 +22,8 @@
/** /**
* 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 Core * @package Framework
* @subpackage Core
*/ */
class rcube_browser class rcube_browser
{ {

@ -25,10 +25,10 @@
/** /**
* Interface class for accessing Roundcube cache * Interface class for accessing Roundcube cache
* *
* @package Cache * @package Framework
* @subpackage Cache
* @author Thomas Bruederli <roundcube@gmail.com> * @author Thomas Bruederli <roundcube@gmail.com>
* @author Aleksander Machniak <alec@alec.pl> * @author Aleksander Machniak <alec@alec.pl>
* @version 1.1
*/ */
class rcube_cache class rcube_cache
{ {

@ -25,10 +25,11 @@
/** /**
* Character sets conversion functionality * Character sets conversion functionality
* *
* @package Core * @package Framework
* @author Thomas Bruederli <roundcube@gmail.com> * @subpackage Core
* @author Aleksander Machniak <alec@alec.pl> * @author Thomas Bruederli <roundcube@gmail.com>
* @author Edmund Grimley Evans <edmundo@rano.org> * @author Aleksander Machniak <alec@alec.pl>
* @author Edmund Grimley Evans <edmundo@rano.org>
*/ */
class rcube_charset class rcube_charset
{ {

@ -22,7 +22,8 @@
/** /**
* Configuration class for Roundcube * Configuration class for Roundcube
* *
* @package Core * @package Framework
* @subpackage Core
*/ */
class rcube_config class rcube_config
{ {

@ -23,7 +23,8 @@
/** /**
* Model class for the local address book database * Model class for the local address book database
* *
* @package Addressbook * @package Framework
* @subpackage Addressbook
*/ */
class rcube_contacts extends rcube_addressbook class rcube_contacts extends rcube_addressbook
{ {

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

@ -21,8 +21,9 @@
/** /**
* CSV to vCard data converter * CSV to vCard data converter
* *
* @package Roundcube Framework * @package Framework
* @author Aleksander Machniak <alec@alec.pl> * @subpackage Addressbook
* @author Aleksander Machniak <alec@alec.pl>
*/ */
class rcube_csv2vcard class rcube_csv2vcard
{ {

@ -21,12 +21,11 @@
/** /**
* Database independent query interface * Database independent query interface.
* This is a wrapper for the PHP PDO.
* *
* This is a wrapper for the PHP PDO * @package Framework
* * @sbpackage Database
* @package Database
* @version 1.0
*/ */
class rcube_db class rcube_db
{ {

@ -23,11 +23,10 @@
/** /**
* Database independent query interface * Database independent query interface
*
* This is a wrapper for the PHP PDO * This is a wrapper for the PHP PDO
* *
* @package Database * @package Framework
* @version 1.0 * @subpackage Database
*/ */
class rcube_db_mssql extends rcube_db class rcube_db_mssql extends rcube_db
{ {

@ -26,8 +26,8 @@
* *
* This is a wrapper for the PHP PDO * This is a wrapper for the PHP PDO
* *
* @package Database * @package Framework
* @version 1.0 * @subpackage Database
*/ */
class rcube_db_mysql extends rcube_db class rcube_db_mysql extends rcube_db
{ {

@ -23,11 +23,10 @@
/** /**
* Database independent query interface * Database independent query interface
*
* This is a wrapper for the PHP PDO * This is a wrapper for the PHP PDO
* *
* @package Database * @package Framework
* @version 1.0 * @subpackage Database
*/ */
class rcube_db_pgsql extends rcube_db class rcube_db_pgsql extends rcube_db
{ {

@ -23,11 +23,10 @@
/** /**
* Database independent query interface * Database independent query interface
*
* This is a wrapper for the PHP PDO * This is a wrapper for the PHP PDO
* *
* @package Database * @package Framework
* @version 1.0 * @subpackage Database
*/ */
class rcube_db_sqlite extends rcube_db class rcube_db_sqlite extends rcube_db
{ {

@ -23,11 +23,10 @@
/** /**
* Database independent query interface * Database independent query interface
*
* This is a wrapper for the PHP PDO * This is a wrapper for the PHP PDO
* *
* @package Database * @package Framework
* @version 1.0 * @subpackage Database
*/ */
class rcube_db_sqlsrv extends rcube_db class rcube_db_sqlsrv extends rcube_db
{ {

@ -21,6 +21,12 @@
+-----------------------------------------------------------------------+ +-----------------------------------------------------------------------+
*/ */
/**
* Image resizer and converter
*
* @package Framework
* @subpackage Utils
*/
class rcube_image class rcube_image
{ {
private $image_file; private $image_file;

@ -25,10 +25,10 @@
/** /**
* Interface class for accessing an IMAP server * Interface class for accessing an IMAP server
* *
* @package Mail * @package Framework
* @subpackage Storage
* @author Thomas Bruederli <roundcube@gmail.com> * @author Thomas Bruederli <roundcube@gmail.com>
* @author Aleksander Machniak <alec@alec.pl> * @author Aleksander Machniak <alec@alec.pl>
* @version 2.0
*/ */
class rcube_imap extends rcube_storage class rcube_imap extends rcube_storage
{ {

@ -24,10 +24,10 @@
/** /**
* Interface class for accessing Roundcube messages cache * Interface class for accessing Roundcube messages cache
* *
* @package Cache * @package Framework
* @subpackage Storage
* @author Thomas Bruederli <roundcube@gmail.com> * @author Thomas Bruederli <roundcube@gmail.com>
* @author Aleksander Machniak <alec@alec.pl> * @author Aleksander Machniak <alec@alec.pl>
* @version 1.0
*/ */
class rcube_imap_cache class rcube_imap_cache
{ {

@ -30,8 +30,8 @@
/** /**
* PHP based wrapper class to connect to an IMAP server * PHP based wrapper class to connect to an IMAP server
* *
* @package Mail * @package Framework
* @author Aleksander Machniak <alec@alec.pl> * @subpackage Storage
*/ */
class rcube_imap_generic class rcube_imap_generic
{ {

@ -6,7 +6,7 @@
| | | |
| This file is part of the Roundcube Webmail client | | This file is part of the Roundcube Webmail client |
| Copyright (C) 2006-2012, The Roundcube Dev Team | | Copyright (C) 2006-2012, The Roundcube Dev Team |
| Copyright (C) 2011, Kolab Systems AG | | Copyright (C) 2011-2012, Kolab Systems AG |
| | | |
| Licensed under the GNU General Public License version 3 or | | Licensed under the GNU General Public License version 3 or |
| any later version with exceptions for skins & plugins. | | any later version with exceptions for skins & plugins. |
@ -26,7 +26,8 @@
/** /**
* Model class to access an LDAP address directory * Model class to access an LDAP address directory
* *
* @package Addressbook * @package Framework
* @subpackage Addressbook
*/ */
class rcube_ldap extends rcube_addressbook class rcube_ldap extends rcube_addressbook
{ {

@ -24,7 +24,8 @@
* Logical representation of a mail message with all its data * Logical representation of a mail message with all its data
* and related functions * and related functions
* *
* @package Mail * @package Framework
* @subpackage Storage
* @author Thomas Bruederli <roundcube@gmail.com> * @author Thomas Bruederli <roundcube@gmail.com>
*/ */
class rcube_message class rcube_message

@ -23,8 +23,9 @@
/** /**
* Struct representing an e-mail message header * Struct representing an e-mail message header
* *
* @package Mail * @package Framework
* @author Aleksander Machniak <alec@alec.pl> * @subpackage Storage
* @author Aleksander Machniak <alec@alec.pl>
*/ */
class rcube_message_header class rcube_message_header
{ {

@ -25,10 +25,10 @@
/** /**
* Class representing a message part * Class representing a message part
* *
* @package Mail * @package Framework
* @subpackage Storage
* @author Thomas Bruederli <roundcube@gmail.com> * @author Thomas Bruederli <roundcube@gmail.com>
* @author Aleksander Machniak <alec@alec.pl> * @author Aleksander Machniak <alec@alec.pl>
* @version 2.0
*/ */
class rcube_message_part class rcube_message_part
{ {

@ -25,9 +25,10 @@
/** /**
* Class for parsing MIME messages * Class for parsing MIME messages
* *
* @package Mail * @package Framework
* @author Thomas Bruederli <roundcube@gmail.com> * @subpackage Storage
* @author Aleksander Machniak <alec@alec.pl> * @author Thomas Bruederli <roundcube@gmail.com>
* @author Aleksander Machniak <alec@alec.pl>
*/ */
class rcube_mime class rcube_mime
{ {

@ -22,7 +22,8 @@
/** /**
* Class for output generation * Class for output generation
* *
* @package HTML * @package Framework
* @subpackage View
*/ */
abstract class rcube_output abstract class rcube_output
{ {

@ -23,7 +23,8 @@
/** /**
* Class to create HTML page output using a skin template * Class to create HTML page output using a skin template
* *
* @package View * @package Framework
* @subpackage View
*/ */
class rcube_output_html extends rcube_output class rcube_output_html extends rcube_output
{ {

@ -23,7 +23,8 @@
/** /**
* View class to produce JSON responses * View class to produce JSON responses
* *
* @package View * @package Framework
* @subpackage View
*/ */
class rcube_output_json extends rcube_output class rcube_output_json extends rcube_output
{ {

@ -22,7 +22,8 @@
/** /**
* Plugin interface class * Plugin interface class
* *
* @package PluginAPI * @package Framework
* @subpackage PluginAPI
*/ */
abstract class rcube_plugin abstract class rcube_plugin
{ {

@ -27,7 +27,8 @@ if (!defined('RCMAIL_PLUGINS_DIR'))
/** /**
* The plugin loader and global API * The plugin loader and global API
* *
* @package PluginAPI * @package Framework
* @subpackage PluginAPI
*/ */
class rcube_plugin_api class rcube_plugin_api
{ {

@ -24,6 +24,9 @@
/** /**
* Class for accessing IMAP's SORT/SEARCH/ESEARCH result * Class for accessing IMAP's SORT/SEARCH/ESEARCH result
*
* @package Framework
* @subpackage Storage
*/ */
class rcube_result_index class rcube_result_index
{ {

@ -24,7 +24,8 @@
* Roundcube result set class. * Roundcube result set class.
* Representing an address directory result set. * Representing an address directory result set.
* *
* @package Addressbook * @package Framework
* @subpackage Addressbook
*/ */
class rcube_result_set class rcube_result_set
{ {

@ -24,6 +24,9 @@
/** /**
* Class for accessing IMAP's THREAD result * Class for accessing IMAP's THREAD result
*
* @package Framework
* @subpackage Storage
*/ */
class rcube_result_thread class rcube_result_thread
{ {

@ -24,7 +24,8 @@
/** /**
* Class to provide database supported session storage * Class to provide database supported session storage
* *
* @package Core * @package Framework
* @subpackage Core
* @author Thomas Bruederli <roundcube@gmail.com> * @author Thomas Bruederli <roundcube@gmail.com>
* @author Aleksander Machniak <alec@alec.pl> * @author Aleksander Machniak <alec@alec.pl>
*/ */

@ -23,7 +23,8 @@
/** /**
* Roundcube shared functions * Roundcube shared functions
* *
* @package Core * @package Framework
* @subpackage Core
*/ */

@ -25,7 +25,8 @@ define('SMTP_MIME_CRLF', "\r\n");
/** /**
* Class to provide SMTP functionality using PEAR Net_SMTP * Class to provide SMTP functionality using PEAR Net_SMTP
* *
* @package Mail * @package Framework
* @subpackage Mail
* @author Thomas Bruederli <roundcube@gmail.com> * @author Thomas Bruederli <roundcube@gmail.com>
* @author Aleksander Machniak <alec@alec.pl> * @author Aleksander Machniak <alec@alec.pl>
*/ */

@ -25,7 +25,8 @@
/** /**
* Helper class for spellchecking with Googielspell and PSpell support. * Helper class for spellchecking with Googielspell and PSpell support.
* *
* @package Core * @package Framework
* @subpackage Utils
*/ */
class rcube_spellchecker class rcube_spellchecker
{ {

@ -25,10 +25,10 @@
/** /**
* Abstract class for accessing mail messages storage server * Abstract class for accessing mail messages storage server
* *
* @package Mail * @package Framework
* @author Thomas Bruederli <roundcube@gmail.com> * @subpackage Storage
* @author Aleksander Machniak <alec@alec.pl> * @author Thomas Bruederli <roundcube@gmail.com>
* @version 2.0 * @author Aleksander Machniak <alec@alec.pl>
*/ */
abstract class rcube_storage abstract class rcube_storage
{ {

@ -23,7 +23,8 @@
/** /**
* Helper class for string replacements based on preg_replace_callback * Helper class for string replacements based on preg_replace_callback
* *
* @package Core * @package Framework
* @subpackage Utils
*/ */
class rcube_string_replacer class rcube_string_replacer
{ {

@ -5,7 +5,7 @@
| program/include/rcube_user.inc | | program/include/rcube_user.inc |
| | | |
| This file is part of the Roundcube Webmail client | | This file is part of the Roundcube Webmail client |
| Copyright (C) 2005-2010, The Roundcube Dev Team | | Copyright (C) 2005-2012, The Roundcube Dev Team |
| | | |
| Licensed under the GNU General Public License version 3 or | | Licensed under the GNU General Public License version 3 or |
| any later version with exceptions for skins & plugins. | | any later version with exceptions for skins & plugins. |
@ -17,6 +17,7 @@
| | | |
+-----------------------------------------------------------------------+ +-----------------------------------------------------------------------+
| Author: Thomas Bruederli <roundcube@gmail.com> | | Author: Thomas Bruederli <roundcube@gmail.com> |
| Author: Aleksander Machniak <alec@alec.pl> |
+-----------------------------------------------------------------------+ +-----------------------------------------------------------------------+
*/ */
@ -24,8 +25,8 @@
/** /**
* Class representing a system user * Class representing a system user
* *
* @package Core * @package Framework
* @author Thomas Bruederli <roundcube@gmail.com> * @subpackage Core
*/ */
class rcube_user class rcube_user
{ {

@ -24,7 +24,8 @@
/** /**
* Utility class providing common functions * Utility class providing common functions
* *
* @package Core * @package Framework
* @subpackage Utils
*/ */
class rcube_utils class rcube_utils
{ {

@ -5,7 +5,7 @@
| program/include/rcube_vcard.php | | program/include/rcube_vcard.php |
| | | |
| This file is part of the Roundcube Webmail client | | This file is part of the Roundcube Webmail client |
| Copyright (C) 2008-2011, The Roundcube Dev Team | | Copyright (C) 2008-2012, The Roundcube Dev Team |
| | | |
| Licensed under the GNU General Public License version 3 or | | Licensed under the GNU General Public License version 3 or |
| any later version with exceptions for skins & plugins. | | any later version with exceptions for skins & plugins. |
@ -15,6 +15,7 @@
| Logical representation of a vcard address record | | Logical representation of a vcard address record |
+-----------------------------------------------------------------------+ +-----------------------------------------------------------------------+
| Author: Thomas Bruederli <roundcube@gmail.com> | | Author: Thomas Bruederli <roundcube@gmail.com> |
| Author: Aleksander Machniak <alec@alec.pl> |
+-----------------------------------------------------------------------+ +-----------------------------------------------------------------------+
*/ */
@ -23,8 +24,8 @@
* Logical representation of a vcard-based address record * Logical representation of a vcard-based address record
* Provides functions to parse and export vCard data format * Provides functions to parse and export vCard data format
* *
* @package Addressbook * @package Framework
* @author Thomas Bruederli <roundcube@gmail.com> * @subpackage Addressbook
*/ */
class rcube_vcard class rcube_vcard
{ {

Loading…
Cancel
Save