PHP Class Horde_Vcs_QuickLog_Base, horde

Copyright 2008-2016 Horde LLC (http://www.horde.org/) See the enclosed file COPYING for license information (LGPL). If you did not receive this file, see http://www.horde.org/licenses/lgpl21.
Datei anzeigen Open project: horde/horde Class Usage Examples

Protected Properties

Property Type Description
$_author string A log author.
$_date integer A log timestamp.
$_log string A log message.
$_rep Horde_Vcs_Base A repository object.
$_rev string A log revision.

Public Methods

Method Description
__construct ( Horde_Vcs_Base $rep, string $rev, integer $date = null, string $author = null, string $log = null ) Constructor.
__sleep ( ) When serializing, don't return the repository object
getAuthor ( ) : string Returns the log author.
getDate ( ) : integer Returns the log date.
getMessage ( ) : string Returns the log message.
getRevision ( ) : string Returns the log revision.

Method Details

__construct() public method

Constructor.
public __construct ( Horde_Vcs_Base $rep, string $rev, integer $date = null, string $author = null, string $log = null )
$rep Horde_Vcs_Base A repository object.
$rev string A log revision.
$date integer A log timestamp.
$author string A log author.
$log string A log message.

__sleep() public method

When serializing, don't return the repository object
public __sleep ( )

getAuthor() public method

Returns the log author.
public getAuthor ( ) : string
return string An author.

getDate() public method

Returns the log date.
public getDate ( ) : integer
return integer A date.

getMessage() public method

Returns the log message.
public getMessage ( ) : string
return string A message.

getRevision() public method

Returns the log revision.
public getRevision ( ) : string
return string A revision.

Property Details

$_author protected_oe property

A log author.
protected string $_author
return string

$_date protected_oe property

A log timestamp.
protected int $_date
return integer

$_log protected_oe property

A log message.
protected string $_log
return string

$_rep protected_oe property

A repository object.
protected Horde_Vcs_Base $_rep
return Horde_Vcs_Base

$_rev protected_oe property

A log revision.
protected string $_rev
return string