Model/Document.php
changeset 58 87bf6ec8af90
parent 27 8551d844b4f3
child 62 10be6b9e55e7
equal deleted inserted replaced
57:186c4121c7b3 58:87bf6ec8af90
    72     {
    72     {
    73         return $this->manualOrder;
    73         return $this->manualOrder;
    74     }
    74     }
    75     
    75     
    76     /**
    76     /**
    77      * TODO: (non-PHPdoc)
    77      * (non-PHPdoc)
    78      * @see IRI\Bundle\WikiTagBundle\Model.BaseDocumentInterface::setExternalId()
    78      * @see IRI\Bundle\WikiTagBundle\Model.BaseDocumentInterface::setExternalId()
    79      */
    79      */
    80     function setExternalId($externalId)
    80     function setExternalId($externalId)
    81     {
    81     {
    82         $this->externalId = $externalId;
    82         $this->externalId = $externalId;
    83     }
    83     }
    84     
    84     
    85     /**
    85     /**
    86      * TODO: (non-PHPdoc)
    86      * (non-PHPdoc)
    87      * @see IRI\Bundle\WikiTagBundle\Model.DocumentInterface::getExternalId()
    87      * @see IRI\Bundle\WikiTagBundle\Model.DocumentInterface::getExternalId()
    88      */
    88      */
    89     function getExternalId()
    89     function getExternalId()
    90     {
    90     {
    91         return $this->externalId;
    91         return $this->externalId;
    92     }
    92     }
    93     
    93     
    94     /**
    94     /**
    95      * TODO: (non-PHPdoc)
    95      * (non-PHPdoc)
    96      * @see IRI\Bundle\WikiTagBundle\Model.DocumentInterface::getTags()
    96      * @see IRI\Bundle\WikiTagBundle\Model.DocumentInterface::getTags()
    97      */
    97      */
    98     function getTags()
    98     function getTags()
    99     {
    99     {
   100         return $this->tags;
   100         return $this->tags;
   101     }
   101     }
   102     
   102     
   103     /**
   103     /**
   104      * TODO: (non-PHPdoc)
   104      * (non-PHPdoc)
   105      * @see IRI\Bundle\WikiTagBundle\Model.DocumentInterface::setTagsStr()
   105      * @see IRI\Bundle\WikiTagBundle\Model.DocumentInterface::setTagsStr()
   106      */
   106      */
   107     function setTagsStr($tagsStr)
   107     function setTagsStr($tagsStr)
   108     {
   108     {
   109         $this->tagsStr = $tagsStr;
   109         $this->tagsStr = $tagsStr;
   110     }
   110     }
   111 
   111     
   112     /**
   112    	/**
   113     * TODO: (non-PHPdoc)
   113      * (non-PHPdoc)
   114     * @see IRI\Bundle\WikiTagBundle\Model.DocumentInterface::getTagsStr()
   114      * @see IRI\Bundle\WikiTagBundle\Model.DocumentInterface::getTagsStr()
   115     */
   115      */
   116     function getTagsStr()
   116     function getTagsStr()
   117     {
   117     {
   118         return $this->tagsStr;
   118         return $this->tagsStr;
   119     }
   119     }
   120     
   120