| 1297 | | /** |
|---|
| 1298 | | * Behavior-like supplementary getter for supplementary columns added by way of withColumn() |
|---|
| 1299 | | * |
|---|
| 1300 | | * @param Doctrine_Record $object Doctrine model object |
|---|
| 1301 | | * @param string $alias Supplementary column name |
|---|
| 1302 | | * |
|---|
| 1303 | | * @return mixed The value of the column set by setColumn() |
|---|
| 1304 | | */ |
|---|
| 1305 | | public function getColumn($object, $alias) |
|---|
| 1306 | | { |
|---|
| 1307 | | throw new Exception('This method is not yet implemented'); |
|---|
| 1308 | | } |
|---|
| 1309 | | |
|---|
| 1310 | | /** |
|---|
| 1311 | | * Behavior-like supplementary setter for supplementary columns added by way of withColumn() |
|---|
| 1312 | | * |
|---|
| 1313 | | * @param Doctrine_Record $object Doctrine model object |
|---|
| 1314 | | * @param string $alias Supplementary column name |
|---|
| 1315 | | * @param mixed The value of the column |
|---|
| 1316 | | */ |
|---|
| 1317 | | public function setColumn($object, $alias, $value) |
|---|
| 1318 | | { |
|---|
| 1319 | | throw new Exception('This method is not yet implemented'); |
|---|
| 1320 | | } |
|---|
| 1321 | | |
|---|