click_count = false; } $this->click_count = $click_count; } function show() { return $this->click_count; } /** * Return column expression, ex) column = column + 1 * @return string */ function getExpression(){ $db_type = Context::getDBType(); if($db_type == 'cubrid') { return "INCR($this->column_name)"; } else { return "$this->column_name"; } } } ?>