Exemplo n.º 1
0
 /**
  * Gets whether or not this tag is modified
  *
  * @return boolean true if this tag has been modified and false if this
  *                  tag has not been modified.
  */
 public function isModified()
 {
     $this->data_object->id = $this->id;
     $this->data_object->name = $this->name;
     $this->data_object->title = $this->title;
     $this->data_object->createdate = $this->createdate;
     return $this->data_object->isModified();
 }