mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-11 14:32:14 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0-DB@8457 201d5d3c-b55e-5fd7-737f-ddc643e51545
29 lines
No EOL
505 B
PHP
29 lines
No EOL
505 B
PHP
<?php
|
|
|
|
/**
|
|
* @class InsertExpression
|
|
* @author Arnia Software
|
|
* @brief
|
|
*
|
|
*/
|
|
|
|
class InsertExpression extends Expression {
|
|
var $argument;
|
|
|
|
function InsertExpression($column_name, $argument){
|
|
parent::Expression($column_name);
|
|
$this->argument = $argument;
|
|
}
|
|
|
|
function getValue(){
|
|
return $this->argument->getValue();
|
|
}
|
|
|
|
function show(){
|
|
$value = $this->argument->getValue();
|
|
if(!isset($value)) return false;
|
|
return true;
|
|
}
|
|
}
|
|
|
|
?>
|