diff options
| author | Greg Roach <fisharebest@gmail.com> | 2014-11-08 14:42:09 +0000 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2014-11-08 14:42:09 +0000 |
| commit | e042cbdedd96d9405b2d971652a70580dda342e7 (patch) | |
| tree | 258eefb98c7529d56ac2fb722c14f5dcca202937 /library/WT/Controller/Pedigree.php | |
| parent | cca009d081da0ce17b14ea0464361b4729914303 (diff) | |
| download | webtrees-e042cbdedd96d9405b2d971652a70580dda342e7.tar.gz webtrees-e042cbdedd96d9405b2d971652a70580dda342e7.tar.bz2 webtrees-e042cbdedd96d9405b2d971652a70580dda342e7.zip | |
PHPDoc
Diffstat (limited to 'library/WT/Controller/Pedigree.php')
| -rw-r--r-- | library/WT/Controller/Pedigree.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/library/WT/Controller/Pedigree.php b/library/WT/Controller/Pedigree.php index 907c5b7394..4caf85bf01 100644 --- a/library/WT/Controller/Pedigree.php +++ b/library/WT/Controller/Pedigree.php @@ -1,6 +1,4 @@ <?php -// Controller for the pedigree chart -// // webtrees: Web based Family History software // Copyright (C) 2014 webtrees development team. // @@ -21,6 +19,9 @@ // along with this program; if not, write to the Free Software // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +/** + * Class WT_Controller_Pedigree - Controller for the pedigree chart + */ class WT_Controller_Pedigree extends WT_Controller_Chart { var $rootid; var $name; @@ -39,6 +40,9 @@ class WT_Controller_Pedigree extends WT_Controller_Chart { var $offsetarray; var $minyoffset; + /** + * Create a pedigree controller + */ public function __construct() { global $PEDIGREE_FULL_DETAILS, $PEDIGREE_LAYOUT, $MAX_PEDIGREE_GENERATIONS; global $DEFAULT_PEDIGREE_GENERATIONS; |
