/**
	 * Get an attribute of this timed item
	 *
	 * @param  string  $column
	 * @param  string  $default
	 * @return mixed
	 */
	public function get( $column, $default = null ) {
		if ( isset( $this->_overides[$column] ) ) {
			return $this->_overides[$column];
		} else {
			if ( ! property_exists( $this, $column ) ) {
				trigger_error( 'cbpaidProduct::get ("' . htmlspecialchars( $column ) . '") innexistant attribute.', E_USER_ERROR );
			}

			return parent::get( $column, $default );
		}
	}