Genealogy_Gedcom
[ class tree: Genealogy_Gedcom ] [ index: Genealogy_Gedcom ] [ all elements ]

Source for file Genealogy_Object.php

Documentation is available at Genealogy_Object.php

  1. <?php
  2. /* vim: set expandtab tabstop=4 shiftwidth=4: */
  3. // +----------------------------------------------------------------------+
  4. // | PHP Version 4                                                        |
  5. // +----------------------------------------------------------------------+
  6. // | Copyright (c) 1997-2003 The PHP Group                                |
  7. // +----------------------------------------------------------------------+
  8. // | This source file is subject to version 2.02 of the PHP license,      |
  9. // | that is bundled with this package in the file LICENSE, and is        |
  10. // | available at through the world-wide-web at                           |
  11. // | http://www.php.net/license/2_02.txt.                                 |
  12. // | If you did not receive a copy of the PHP license and are unable to   |
  13. // | obtain it through the world-wide-web, please send a note to          |
  14. // | license@php.net so we can mail you a copy immediately.               |
  15. // +----------------------------------------------------------------------+
  16. // | Authors: Olivier Vanhoucke <olivier@php.net>                         |
  17. // +----------------------------------------------------------------------+
  18. //
  19. // $Id: Genealogy_Object.php,v 1.2 2003/01/04 11:54:56 mj Exp $
  20. //
  21.  
  22. /**
  23.  * Genealogy_Object
  24.  *
  25.  * Purpose:
  26.  *
  27.  *
  28.  *
  29.  * Contributors:
  30.  *
  31.  * @author   Olivier Vanhoucke <olivier@php.net>
  32.  * @version  $Revision: 1.2 $
  33.  * @package  Genealogy_Gedcom
  34.  * @access   public
  35.  */
  36.  
  37.     /**
  38.      * Contains the Gedcom object identifier
  39.      *
  40.      * @var    string 
  41.      * @access public
  42.      */
  43.     var $Identifier   = '';
  44.  
  45.     /**
  46.      * Contains the Gedcom object : FILE
  47.      *
  48.      * @var    string 
  49.      * @access public
  50.      */
  51.     var $File = '';
  52.  
  53.     /**
  54.      * Constructor
  55.      *
  56.      * Creates a new Genealogy_Object Object
  57.      *
  58.      * @access public
  59.      * @param  array 
  60.      * @return object Genealogy_Object 
  61.      */
  62.     function Genealogy_Object($arg{
  63.         $this->Identifier = $arg[0];
  64.         $this->File       = $arg[1];
  65.     }
  66. }
  67. ?>

Documentation generated on Mon, 11 Mar 2019 14:18:35 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.