* script.
*
* @author Jan Schneider <jan@horde.org>
- * @since Horde 3.2
* @package Horde_Alarm
*/
class Horde_Alarm_sql extends Horde_Alarm {
*
* @author Chuck Hagenbuch <chuck@horde.org>
* @author Michael J. Rubinsky <mrubinsk@horde.org>
- * @since Horde 3.2
* @package Horde_DOM
*/
-/** PEAR */
-require_once 'PEAR.php';
-
/** Validate against the DTD */
define('HORDE_DOM_LOAD_VALIDATE', 1);
<?php
-
-require_once 'PEAR.php';
-
/**
* Abstract class to handle different kinds of Data formats and to
* help data exchange between Horde applications and external sources.
*
* @author Jan Schneider <jan@horde.org>
* @author Chuck Hagenbuch <chuck@horde.org>
- * @since Horde 1.3
* @package Horde_Data
*/
class Horde_Data extends PEAR {
* A list of warnings raised during the last operation.
*
* @var array
- * @since Horde 3.1
*/
var $_warnings = array();
* Returns a list of warnings that have been raised during the last
* operation.
*
- * @since Horde 3.1
- *
* @return array A (possibly empty) list of warnings.
*/
function warnings()
*/
/**
- * Horde's File_CSV class.
- */
-include_once 'File/CSV.php';
-
-/**
* Horde_Data implementation for comma-separated data (CSV).
*
* Copyright 1999-2010 The Horde Project (http://www.horde.org/)
*
* @author Jan Schneider <jan@horde.org>
* @author Chuck Hagenbuch <chuck@horde.org>
- * @since Horde 1.3
* @package Horde_Data
*/
class Horde_Data_csv extends Horde_Data {
* @author Chuck Hagenbuch <chuck@horde.org>
* @author Karsten Fourmont <fourmont@horde.org>
* @package Horde_Data
- * @since Horde 3.0
*/
class Horde_Data_icalendar extends Horde_Data_imc {
<?php
-
-require_once 'Horde/iCalendar.php';
-
/**
* Abstract implementation of the Horde_Data:: API for IMC data -
* vCards and iCalendar data, etc. Provides a number of utility
*
* @author Jan Schneider <jan@horde.org>
* @package Horde_Data
- * @since Horde 3.0
*/
class Horde_Data_imc extends Horde_Data {
*
* @author Jan Schneider <jan@horde.org>
* @author Chuck Hagenbuch <chuck@horde.org>
- * @since Horde 1.3
* @package Horde_Data
*/
class Horde_Data_tsv extends Horde_Data {
<?php
-
-require_once dirname(__FILE__) . '/imc.php';
-require_once 'Horde/iCalendar.php';
-
/**
* Implement the Horde_Data:: API for vCard data.
*
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Jan Schneider <jan@horde.org>
- * @since Horde 3.0
* @package Horde_Data
*/
class Horde_Data_vcard extends Horde_Data_imc {
<?php
-
-require_once dirname(__FILE__) . '/imc.php';
-
/**
* Implement the Horde_Data:: API for vNote data.
*
* @author Jan Schneider <jan@horde.org>
* @author Chuck Hagenbuch <chuck@horde.org>
* @package Horde_Data
- * @since Horde 3.0
*/
class Horde_Data_vnote extends Horde_Data_imc {
<?php
-
-/** We rely on the Horde_Data_imc:: abstract class. */
-require_once dirname(__FILE__) . '/imc.php';
-
/**
* Implement the Horde_Data:: API for vTodo data.
*
* @author Jan Schneider <jan@horde.org>
* @author Chuck Hagenbuch <chuck@horde.org>
* @package Horde_Data
- * @since Horde 3.0
*/
class Horde_Data_vtodo extends Horde_Data_imc {
/**
* Create attribute sort hash
*
- * @since Horde 3.1
- *
* @param string $root The name of the leaf from which we start
* the export tree.
* @param string $sortby_name Attribute name to use for sorting.
*
* @abstract
*
- * @since Horde 3.1
- *
* @param string $root Which portion of the tree to sort.
* Defaults to all of it.
* @param boolean $loadTree Sort the tree starting at $root, or just the
* You never call this function; it's used in uasort() calls. Do NOT use
* usort(); you'll lose key => value associations.
*
- * @since Horde 3.1
- *
* @private
*
* @param array $a The first object
*
* @author Stephane Huther <shuther1@free.fr>
* @author Chuck Hagenbuch <chuck@horde.org>
- * @since Horde 2.1
* @package Horde_DataTree
*/
class DataTreeObject {
*
* @author Stephane Huther <shuther1@free.fr>
* @author Chuck Hagenbuch <chuck@horde.org>
- * @since Horde 3.0
* @package Horde_DataTree
*/
class DataTree_null extends DataTree {
/**
* Get a tree sorted by the specified attribute name and/or key.
*
- * @since Horde 3.1
- *
* @param string $root Which portion of the tree to sort.
* Defaults to all of it.
* @param boolean $loadTree Sort the tree starting at $root, or just the
* @author Stephane Huther <shuther1@free.fr>
* @author Chuck Hagenbuch <chuck@horde.org>
* @author Jan Schneider <jan@horde.org>
- * @since Horde 2.1
* @package Horde_DataTree
*/
class DataTree_sql extends DataTree {
/**
* Returns a tree sorted by the specified attribute name and/or key.
*
- * @since Horde 3.1
- *
* @param string $root Which portion of the tree to sort.
* Defaults to all of it.
* @param boolean $loadTree Sort the tree starting at $root, or just the
* given criteria. Either attribute_name or attribute_key MUST be
* supplied, and both MAY be supplied.
*
- * @since Horde 3.2
- *
* @see buildAttributeQuery()
*
* @param array $criteria The array of criteria.
* Either attribute_name or attribute_key MUST be
* supplied, and both MAY be supplied.
*
- * @since Horde 3.2
- *
* @see buildAttributeQuery()
*
* @param array $criteria The array of criteria.
* @package File_CSV
*/
-/** PEAR */
-require_once 'PEAR.php';
-
/** Mode to use for reading from files */
define('HORDE_FILE_CSV_MODE_READ', 'rb');
*
* @author Tomas Von Veschler Cox <cox@idecnet.com>
* @author Jan Schneider <jan@horde.org>
- * @since Horde 3.1
* @package File_CSV
*/
class File_CSV {
*/
function raiseError($error)
{
- require_once 'PEAR.php';
return PEAR::raiseError($error);
}
* Returns the actual page width.
*
* @since File_PDF 0.2.0
- * @since Horde 3.2
*
* @return float The page width.
*/
* Returns the actual page height.
*
* @since File_PDF 0.2.0
- * @since Horde 3.2
*
* @return float The page height.
*/
* between 0 and 1. Required for cmyk.
*
* @since File_PDF 0.2.0
- * @since Horde 3.2
* @see setFillColor()
* @see setDrawColor()
* @see rect()
* @param string $style The font style.
*
* @since File_PDF 0.2.0
- * @since Horde 3.2
* @see setFont()
*/
function setFontStyle($style)
* memory usage during the call.
*
* @since File_PDF 0.2.0
- * @since Horde 3.2
* @see getOutput()
*/
function flush()
*
* @author Robert E. Coyle <robertecoyle@hotmail.com>
* @author Chuck Hagenbuch <chuck@horde.org>
- * @since Horde 3.0
* @package Horde_Form
*/
class Horde_Form {
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Chuck Hagenbuch <chuck@horde.org>
- * @since Horde 3.2
* @package Horde_Form
*/
class Horde_Form_Action_setcursorpos extends Horde_Form_Action {
}
-/**
- * @since Horde 3.3
- */
class Horde_Form_Type_stringarray extends Horde_Form_Type_stringlist {
function getInfo(&$vars, &$var, &$info)
}
-/**
- * @since Horde 3.2
- */
class Horde_Form_Type_phone extends Horde_Form_Type {
function isValid(&$var, &$vars, $value, &$message)
}
-/**
- * @since Horde 3.3
- */
class Horde_Form_Type_pgp extends Horde_Form_Type_longtext {
/**
}
-/**
- * @since Horde 3.3
- */
class Horde_Form_Type_smime extends Horde_Form_Type_longtext {
/**
}
-/**
- * @since Horde 3.2
- */
class Horde_Form_Type_country extends Horde_Form_Type_enum {
function init($prompt = null)
return $this->_values;
}
- /**
- * @since Horde 3.2
- */
function setValues($values)
{
$this->_values = $values;
}
-/**
- * @since Horde 3.2
- */
class Horde_Form_Type_datetime extends Horde_Form_Type {
var $_mdy;
}
-/**
- * @since Horde 3.2
- */
class Horde_Form_Type_category extends Horde_Form_Type {
function getInfo(&$vars, &$var, &$info)
/**
* @package Horde_Form
- * @since Horde 3.1
*/
class Horde_Form_Type_tableset extends Horde_Form_Type {
*
* @author Stephane Huther <shuther1@free.fr>
* @author Chuck Hagenbuch <chuck@horde.org>
- * @since Horde 2.1
* @package Horde_Group
*/
class Group {
* DataTreeObject directly.
*
* @author Chuck Hagenbuch <chuck@horde.org>
- * @since Horde 2.1
* @package Horde_Group
*/
class DataTreeObject_Group extends DataTreeObject {
* Extension of the DataTreeObject_Group class for storing Group information.
*
* @author Michael J. Rubinsky <mrubinsk@horde.org>
- * @since Horde 4.0
* @package Horde_Group
*/
class ContactListObject_Group extends DataTreeObject_Group {
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Jason Rust <jrust@rustyparts.com>
- * @since Horde 3.0
* @package Horde_Group
*/
class Group_hooks extends Group {
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Gunnar Wrobel <wrobel@pardus.de>
- * @since Horde 3.2
* @package Horde_Group
*/
class Group_kolab extends Group_ldap {
*
*
* @author Ben Chavet <ben@horde.org>
- * @since Horde 3.1
* @package Horde_Group
*/
class Kolab_Group extends LDAP_Group {
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Ben Chavet <ben@horde.org>
- * @since Horde 3.1
* @package Horde_Group
*/
class Group_ldap extends Group {
* in an LDAP directory.
*
* @author Ben Chavet <ben@horde.org>
- * @since Horde 3.1
* @package Horde_Group
*/
class LDAP_Group extends DataTreeObject_Group {
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Duck <duck@obala.net>
- * @since Horde 3.2
* @package Horde_Group
*/
class Group_mock extends Group {
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Duck <duck@obala.net>
- * @since Horde 3.2
* @package Horde_Group
*/
class Group_sql extends Group {
* SQLObject directly.
*
* @author Duck <duck@obala.net>
- * @since Horde 3.2
* @package Horde_Group
*/
class SQLObject_Group extends DataTreeObject_Group {
* @package Kolab_Filter
*/
-/** Load the required PEAR libraries */
-require_once 'PEAR.php';
-
-/** Console_Getopt */
-require_once 'Console/Getopt.php';
-
-/** Load the required Horde libraries */
-require_once 'Horde.php';
-
/** Load the Filter libraries */
require_once dirname(__FILE__) . '/Response.php';
-/** Load the argument parsing library */
-require_once 'Horde/Argv/Option.php';
-require_once 'Horde/Argv/OptionContainer.php';
-require_once 'Horde/Argv/HelpFormatter.php';
-require_once 'Horde/Argv/IndentedHelpFormatter.php';
-require_once 'Horde/Argv/Values.php';
-require_once 'Horde/Argv/Parser.php';
-
/**
* A basic definition for a PHP based postfix filter.
*
* @package Kolab_Filter
*/
-/* Require the PEAR library for PEAR errors */
-require_once 'PEAR.php';
-
/* Some output constants */
-define( 'OUT_STDOUT', 128 );
-define( 'OUT_LOG', 256 );
+define('OUT_STDOUT', 128);
+define('OUT_LOG', 256);
/* Failure constants from postfix src/global/sys_exits.h */
define('EX_USAGE', 64); /* command line usage error */
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Chuck Hagenbuch <chuck@horde.org>
- * @since Horde 2.2
* @package Horde_LDAP
*/
class Horde_LDAP
* @param string $lhs The attribute to test.
* @param string $op The operator.
* @param string $rhs The comparison value.
- * @param array $params Any additional parameters for the operator. @since
- * Horde 3.2
+ * @param array $params Any additional parameters for the operator.
*
* @return string The LDAP search fragment.
*/
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Chuck Hagenbuch <chuck@horde.org>
- * @since Horde 3.0
* @package Horde_Mobile
*/
class Horde_Mobile extends Horde_Mobile_card {
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Chuck Hagenbuch <chuck@horde.org>
- * @since Horde 3.0
* @package Horde_Mobile
*/
class Horde_Mobile_Renderer extends Horde_Mobile {
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Chuck Hagenbuch <chuck@horde.org>
- * @since Horde 3.0
* @package Horde_Mobile
*/
class Horde_Mobile_Renderer_html extends Horde_Mobile_Renderer {
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Chuck Hagenbuch <chuck@horde.org>
- * @since Horde 3.0
* @package Horde_Mobile
*/
class Horde_Mobile_Renderer_wml extends Horde_Mobile_Renderer {
* the current user.
*
* @return mixed Array describing any shares added or removed | PEAR_Error.
- * @since Horde 3.2
*/
function synchShares(&$share_obj, $serverInfo)
{
* @param array Parameters for the share
*
* @return mixed True | PEAR_Error
- * @since Horde 3.2
*/
function _createShare(&$share_obj, $params, $shareparams)
{
* @param array $params Parameters to check for ownership.
*
* @return boolean True if $user is owner, otherwise false.
- * @since Horde 3.2
*/
function _isOwner($bookName, $username, $acl)
{
*
* @param Datatree_Object_Share $share The share to assign perms to
* @param string $acl The IMSP acl string.
- * @since Horde 3.2
*/
function _setPerms(&$share, $acl)
{
* @param integer $perms Horde_Perms style permission bitmask.
*
* @return string An IMSP acl string
- * @since Horde 3.2
*/
function permsToACL($perms)
{
* @param string $acl The acl string to set.
*
* @return mixed True | Pear_Error
- * @since Horde 3.2
*/
function setACL($params, $book, $name, $acl)
{
<?php
-
-require_once 'PEAR.php';
-
/**
* Net_SMS Class
*
* @author Ian Eure <ieure@php.net>
* @link http://pear.php.net/package/Net_SMS
* @since Net_SMS 0.2.0
- * @since Horde 3.2
*/
class Net_SMS_generic_smpp extends Net_SMS {
* @category Networking
* @package Net_SMS
* @author Ian Eure <ieure@php.net>
- * @since Horde 3.1
* @since Net_SMS 0.0.2
*/
class Net_SMS_generic_smtp extends Net_SMS {
{
public function setUp()
{
- @include_once 'PEAR.php';
if (!class_exists('PEAR_Error')) {
$this->markTestSkipped('The PEAR_Error class is not available!');
}
*
* @author Chuck Hagenbuch <chuck@horde.org>
* @author Jan Schneider <jan@horde.org>
- * @since Horde 2.2
* @package Horde_SQL
*/
class Horde_SQL {
* @param string $rhs The comparison value.
* @param boolean $bind If true, the method returns the query and a list
* of values suitable for binding as an array.
- * @param array $params Any additional parameters for the operator. @since
- * Horde 3.2
+ * @param array $params Any additional parameters for the operator.
*
* @return mixed The SQL test fragment, or an array containing the query
* and a list of values if $bind is true.
* quoting it or use unbalanced parentheses.
*
* @author Jason M. Felice <jason.m.felice@gmail.com>
- * @since Horde 3.0
* @package Horde_SQL
*/
class Horde_SQL_Keywords {
* @author Chuck Hagenbuch <chuck@horde.org>
* @author Jan Schneider <jan@horde.org>
* @author Gunnar Wrobel <wrobel@pardus.de>
- * @since Horde 3.0
* @package Horde_Share
*/
class Horde_Share {
/**
* Returns the number of shares that $userid has access to.
*
- * @since Horde 3.2
- *
* @param string $userid The userid of the user to check access for.
* @param integer $perm The level of permissions required.
* @param mixed $attributes Restrict the shares counted to those
* @author Mike Cochrane <mike@graftonhall.co.nz>
* @author Jan Schneider <jan@horde.org>
* @author Gunnar Wrobel <wrobel@pardus.de>
- * @since Horde 3.2
* @package Horde_Share
*/
class Horde_Share_Object {
* @author Chuck Hagenbuch <chuck@horde.org>
* @author Jan Schneider <jan@horde.org>
* @author Gunnar Wrobel <wrobel@pardus.de>
- * @since Horde 3.2
* @package Horde_Share
*/
class Horde_Share_datatree extends Horde_Share {
/**
* Returns the number of shares that $userid has access to.
*
- * @since Horde 3.2
- *
* @param string $userid The userid of the user to check access for.
* @param integer $perm The level of permissions required.
* @param mixed $attributes Restrict the shares counted to those
* @author Mike Cochrane <mike@graftonhall.co.nz>
* @author Jan Schneider <jan@horde.org>
* @author Gunnar Wrobel <wrobel@pardus.de>
- * @since Horde 3.2
* @package Horde_Share
*/
class Horde_Share_Object_datatree extends Horde_Share_Object {
*
* @author Mike Cochrane <mike@graftonhall.co.nz>
* @author Jan Schneider <jan@horde.org>
- * @since Horde 3.0
* @package Horde_Share
*/
class DataTreeObject_Share extends DataTreeObject {
*
* @author Stuart Binge <omicron@mighty.co.za>
* @author Gunnar Wrobel <wrobel@pardus.de>
- * @since Horde 3.2
* @package Horde_Share
*/
class Horde_Share_kolab extends Horde_Share {
/**
* Returns the number of shares that $userid has access to.
*
- * @since Horde 3.2
- *
* @param string $userid The userid of the user to check access for.
* @param integer $perm The level of permissions required.
* @param mixed $attributes Restrict the shares counted to those
*
* @author Stuart Binge <omicron@mighty.co.za>
* @author Gunnar Wrobel <wrobel@pardus.de>
- * @since Horde 3.2
* @package Horde_Share
*/
class Horde_Share_Object_kolab extends Horde_Share_Object {
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Duck <duck@obala.net>
- * @since Horde 3.2
* @package Horde_Share
*/
* the sql driver.
*
* @author Duck <duck@obala.net>
- * @since Horde 3.2
* @package Horde_Share
*/
class Horde_Share_Object_sql extends Horde_Share_Object {
*
* @author Duck <duck@obala.net>
* @author Michael J. Rubinsky <mrubinsk@horde.org>
- * @since Horde 3.2
* @package Horde_Share
*/
class Horde_Share_sql_hierarchical extends Horde_Share_sql {
*
* @author Karsten Fourmont <karsten@horde.org>
* @author Anthony Mills <amills@pyramid6.com>
- * @since Horde 3.0
* @package SyncML
*/
*
* @author Anthony Mills <amills@pyramid6.com>
* @author Jan Schneider <jan@horde.org>
- * @since Horde 3.0
* @package SyncML
*/
class SyncML_Command {
$msg = 'Class definition of ' . $class . ' not found.';
$GLOBALS['backend']->logMessage($msg, __FILE__, __LINE__,
PEAR_LOG_ERR);
- require_once 'PEAR.php';
$cmd = PEAR::raiseError($msg);
}
* @author Anthony Mills <amills@pyramid6.com>
* @author Karsten Fourmont <karsten@horde.org>
* @author Jan Schneider <jan@horde.org>
- * @since Horde 3.0
* @package SyncML
*/
class SyncML_Command_Alert extends SyncML_Command {
*
* @author Karsten Fourmont <karsten@horde.org>
* @author Jan Schneider <jan@horde.org>
- * @since Horde 3.0
* @package SyncML
*/
class SyncML_Command_Final extends SyncML_Command {
*
* @author Karsten Fourmont <fourmont@gmx.de>
* @author Jan Schneider <jan@horde.org>
- * @since Horde 3.0
* @package SyncML
*/
class SyncML_Command_Get extends SyncML_Command {
*
* @author Karsten Fourmont <karsten@horde.org>
* @author Jan Schneider <jan@horde.org>
- * @since Horde 3.0
* @package SyncML
*/
class SyncML_Command_Map extends SyncML_Command {
*
* @author Karsten Fourmont <karsten@horde.org>
* @author Jan Schneider <jan@horde.org>
- * @since Horde 3.0
* @package SyncML
*/
class SyncML_Command_Put extends SyncML_Command {
*
* @author Anthony Mills <amills@pyramid6.com>
* @author Jan Schneider <jan@horde.org>
- * @since Horde 3.0
* @package SyncML
*/
class SyncML_Command_Replace extends SyncML_Command {
*
* @author Nathan P Sharp
* @author Jan Schneider <jan@horde.org>
- * @since Horde 3.0
* @package SyncML
*/
class SyncML_Command_Results extends SyncML_Command_Put {
*
* @author Karsten Fourmont <fourmont@gmx.de>
* @author Jan Schneider <jan@horde.org>
- * @since Horde 3.0
* @package SyncML
*/
class SyncML_Command_Status extends SyncML_Command {
*
* @author Karsten Fourmont <karsten@horde.org>
* @author Jan Schneider <jan@horde.org>
- * @since Horde 3.0
* @package SyncML
*/
class SyncML_Command_Sync extends SyncML_Command {
*
* @author Karsten Fourmont <karsten@horde.org>
* @author Jan Schneider <jan@horde.org>
- * @since Horde 3.0.5
* @package SyncML
*/
class SyncML_SyncElement {
*
* @author Karsten Fourmont <karsten@horde.org>
* @author Jan Schneider <jan@horde.org>
- * @since Horde 3.2
* @package SyncML
*/
class SyncML_Command_SyncHdr extends SyncML_Command {
*
* @author Anthony Mills <amills@pyramid6.com>
* @author Jan Schneider <jan@horde.org>
- * @since Horde 3.0
* @package SyncML
*/
class SyncML_State {
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Anthony Mills <amills@pyramid6.com>
- * @since Horde 3.0
* @package SyncML
*/
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Karsten Fourmont <karsten@horde.org>
- * @since Horde 3.2
* @package SyncML
*/
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Jan Schneider <jan@horde.org>
- * @since Horde 3.3.4
* @package SyncML
*/
-require_once 'PEAR.php';
require_once 'SyncML.php';
class Backend extends SyncML_Backend {
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Karsten Fourmont <karsten@horde.org>
- * @since Horde 3.2
* @package SyncML
*/
* returns the number of new (added) lines in a given diff.
*
* @since Text_Diff 1.1.0
- * @since Horde 3.2
*
* @return integer The number of new lines
*/
* Returns the number of deleted (removed) lines in a given diff.
*
* @since Text_Diff 1.1.0
- * @since Horde 3.2
*
* @return integer The number of deleted lines
*/
<?php
-require_once 'PEAR.php';
require_once 'Log.php';
define('VFS_QUOTA_METRIC_BYTE', 1);
*
* @author Chuck Hagenbuch <chuck@horde.org>
* @package VFS
- * @since Horde 2.2
*/
class VFS {
/**
* Returns the size of a folder
*
- * @since Horde 3.1
- *
* @param string $path The path to the folder.
* @param string $name The name of the folder.
*
/**
* Returns the size of the VFS item.
*
- * @since Horde 3.1
- *
* @return integer The size, in bytes, of the VFS item.
*/
function getVFSSize()
/**
* Sets the VFS quota limit.
*
- * @since Horde 3.1
- *
* @param integer $quota The limit to apply.
* @param integer $metric The metric to multiply the quota into.
*/
/**
* Sets the VFS quota root.
*
- * @since Horde 3.1
- *
* @param string $dir The root directory for the quota determination.
*/
function setQuotaRoot($dir)
/**
* Get quota information (used/allocated), in bytes.
*
- * @since Horde 3.1
- *
* @return mixed An associative array.
* 'limit' = Maximum quota allowed
* 'usage' = Currently used portion of quota (in bytes)
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Jan Schneider <jan@horde.org>
- * @since Horde 3.2
* @package VFS
*/
class VFS_horde extends VFS {
*
* @author Paul Gareau <paul@xhawk.net>
* @author Patrice Levesque <wayne@ptaff.ca>
- * @since Horde 3.1
* @package VFS
*/
class VFS_smb extends VFS {
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @editor Cliff Green <green@umdnj.edu>
- * @since Horde 3.2
* @package VFS
*/
class VFS_ssh2 extends VFS {
<?php
-
-require_once 'PEAR.php';
-
/**
* VFS API for abstracted creation of ISO (CD-ROM) filesystems.
*
*
* @author Jason M. Felice <jason.m.felice@gmail.com>
* @package VFS_ISO
- * @since Horde 3.0
*/
class VFS_ISOWriter {
*
* @author Jason M. Felice <jason.m.felice@gmail.com>
* @package VFS_ISO
- * @since Horde 3.0
*/
class VFS_ISOWriter_RealInputStrategy {
*
* @author Jason M. Felice <jason.m.felice@gmail.com>
* @package VFS_ISO
- * @since Horde 3.0
*/
class VFS_ISOWriter_RealInputStrategy_copy extends VFS_ISOWriter_RealInputStrategy {
*
* @author Jason M. Felice <jason.m.felice@gmail.com>
* @package VFS_ISO
- * @since Horde 3.0
*/
class VFS_ISOWriter_RealInputStrategy_direct extends VFS_ISOWriter_RealInputStrategy {
*
* @author Jason M. Felice <jason.m.felice@gmail.com>
* @package VFS_ISO
- * @since Horde 3.0
*/
class VFS_ISOWriter_RealOutputStrategy {
*
* @author Jason M. Felice <jason.m.felice@gmail.com>
* @package VFS_ISO
- * @since Horde 3.0
*/
class VFS_ISOWriter_RealOutputStrategy_copy extends VFS_ISOWriter_RealOutputStrategy {
*
* @author Jason M. Felice <jason.m.felice@gmail.com>
* @package VFS_ISO
- * @since Horde 3.0
*/
class VFS_ISOWriter_RealOutputStrategy_direct extends VFS_ISOWriter_RealOutputStrategy {
*
* @author Jason M. Felice <jason.m.felice@gmail.com>
* @package VFS_ISO
- * @since Horde 3.0
*/
class VFS_ISOWriter_mkisofs extends VFS_ISOWriter {
*/
function raiseError($error)
{
- if (!class_exists('PEAR')) {
- require 'PEAR.php';
- }
return PEAR::raiseError($error);
}
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Mike Cochrane <mike@graftonhall.co.nz>
- * @since Horde 3.0
* @package Horde_iCalendar
*/
class Horde_iCalendar {
}
}
if (!count($result)) {
- require_once 'PEAR.php';
return PEAR::raiseError('Attribute "' . $name . '" Not Found');
} if (count($result) == 1 && !$params) {
return $result[0];
* @todo Don't use timestamps
*
* @author Mike Cochrane <mike@graftonhall.co.nz>
- * @since Horde 3.0
* @package Horde_iCalendar
*/
class Horde_iCalendar_vfreebusy extends Horde_iCalendar {
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Mike Cochrane <mike@graftonhall.co.nz>
- * @since Horde 3.0
* @package Horde_iCalendar
*/
class Horde_iCalendar_vjournal extends Horde_iCalendar {
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Mike Cochrane <mike@graftonhall.co.nz>
- * @since Horde 3.0
* @package Horde_iCalendar
*/
class Horde_iCalendar_vtimezone extends Horde_iCalendar {
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Mike Cochrane <mike@graftonhall.co.nz>
- * @since Horde 3.0
* @package Horde_iCalendar
*/
class Horde_iCalendar_vtodo extends Horde_iCalendar {
* [Once again, insert 2 spaces after the datatype, and line up all
* subsequent lines, if any, with this character.]
*
- * @since Horde x.x [Only if necessary - use if function is added to the
+ * @since Horde x.x.x [Only if necessary - use if function is added to the
* current release versions to indicate that the function has not been
* available in previous versions. @since is only needed if the function
* has been added after the last major point release - e.g. x.0.]
*
* @author Original Author <author@example.com>
* @author Your Name <you@example.com>
- * @since Horde 3.0 [only if needed]
+ * @since Horde 4.0.1 [only if needed]
* @category Horde
* @package Horde_Package
*/
*
* @author Original Author <author@example.com>
* @author Your Name <you@example.com>
- * @since App 1.0 [only if needed]
+ * @since App 1.0.1 [only if needed]
* @category Horde
* @package app
*/
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Eric Jon Rostetter <eric.rostetter@physics.utexas.edu>
- * @since Horde 3.1
* @package Horde_Block
*/
class Accounts_Driver {
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Eric Jon Rostetter <eric.rostetter@physics.utexas.edu>
- * @since Horde 3.1
* @package Horde_Block
*/
class Accounts_Driver_localhost extends Accounts_Driver {
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Eric Jon Rostetter <eric.rostetter@physics.utexas.edu>
- * @since Horde 3.1
* @package Horde_Block
*/
class Accounts_Driver_ldap extends Accounts_Driver {
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Chuck Hagenbuch <chuck@horde.org>
- * @since Horde 2.2
* @package Hylax
*/
class Hylax_SQL_Attributes {
* http://www.opensource.org/licenses/bsd-license.php.
*
* @author Ben Klang <ben@alkaloid.net>
- * @since Shout 0.1
* @package Shout
*/
* http://www.opensource.org/licenses/bsd-license.php.
*
* @author Ben Klang <ben@alkaloid.net>
- * @since Shout 0.1
* @package Shout
-->
<configuration>
* http://www.opensource.org/licenses/bsd-license.php.
*
* @author Ben Klang <ben@alkaloid.net>
- * @since Shout 0.1
* @package Shout
*/
-
class Shout_Driver {
/**
* http://www.opensource.org/licenses/bsd-license.php.
*
* @author Ben Klang <ben@alkaloid.net>
- * @since Shout 0.1
* @package Shout
*/
* http://www.opensource.org/licenses/bsd-license.php.
*
* @author Ben Klang <ben@alkaloid.net>
- * @since Shout 0.1
* @package Shout
*/
-
-
class Shout_Driver_Sql extends Shout_Driver
{
/**
* http://www.opensource.org/licenses/bsd-license.php.
*
* @author Ben Klang <ben@alkaloid.net>
- * @since Shout 0.1
* @package Shout
*/
class Shout
* http://www.opensource.org/licenses/bsd-license.php.
*
* @author Ben Klang <ben@alkaloid.net>
- * @since Shout 0.1
* @package Shout
*/
-
-
table {
width: 100%;
}
function _getMailboxDir($user, $domain)
{
if (empty($this->_params['mail_dir_base'])) {
- require_once 'PEAR.php';
throw new Vilma_Exception(_("No 'mail_dir_base' parameter specified to maildrop driver."));
}
$dir = $this->_params['mail_dir_base'];
}
if (!$exists[$dir]) {
- require_once 'PEAR.php';
throw new Vilma_Exception(sprintf(_("Maildrop directory \"%s\" does not exist."), $dir));
}
return $dir;
}
if (empty($this->_params['system_user'])) {
- require_once 'PEAR.php';
throw new Vilma_Exception(_("No 'system_user' parameter specified to maildrop driver."));
}