git-svn-id: file:///svn-source/pmgr/branches/pre_0.1_work_20090819@797 97e9348a-65ac-dc4b-aefc-98561f571b83
22 lines
481 B
PHP
22 lines
481 B
PHP
<?php
|
|
class DefaultOption extends AppModel {
|
|
|
|
var $belongsTo =
|
|
array('OptionValue',
|
|
);
|
|
|
|
|
|
function values($name = null) {
|
|
$this->prEnter(compact('name'));
|
|
|
|
$query = array();
|
|
$this->queryInit($query);
|
|
|
|
$query['link']['DefaultOption'] = array();
|
|
$query['link']['DefaultOption']['type'] = 'INNER';
|
|
$query['link']['DefaultOption']['fields'] = array();
|
|
return $this->prReturn($this->OptionValue->values($name, $query));
|
|
}
|
|
|
|
}
|