Example #1
0
 /**
  * get
  * Overwritten get() to receive timestamp, ip and approved state correctly.
  *
  * @since
  * @access public
  * @param   mixed $key The name of the property to receive.
  * @return  mixed $val The value of the property.
  */
 function get($key)
 {
     $testKey = '_' . $key;
     if (isset($this->{$testKey})) {
         return $this->{$testKey};
     }
     return Services_Trackback::get($key);
 }