[WeEngine System] Copyright (c) 2014 WE7.CC WeEngine is NOT a free software, it under the license terms, visited http://www.we7.cc/ for more details.
AttachmentGroup |
<?php
/**
* [WeEngine System] Copyright (c) 2014 WE7.CC
* WeEngine is NOT a free software, it under the license terms, visited http://www.we7.cc/ for more details.
*/
namespace We7\Table\Core;
class AttachmentGroup extends \We7Table {
protected $tableName = 'attachment_group';
protected $primaryKey = 'id';
protected $field = array(
'name',
'uniacid',
'uid',
'type',
);
protected $default = array(
'name' => '',
'uniacid' => '0',
'uid' => '0',
'type' => '0',
);
public function searchWithUniacidOrUid($uniacid, $uid) {
if (empty($uniacid)) {
$this->query->where('uniacid', 0)->where('uid', $uid);
} else {
$this->query->where('uniacid', $uniacid);
}
return $this;
}
}