コード例 #1
0
ファイル: File.php プロジェクト: romaninsh/atkSchool
 function updateSelectQuery($select)
 {
     parent::updateSelectQuery($select);
     $q = $this->owner->_dsql()->dsql();
     $q->table('filestore_file', 'ffs');
     $vol = $q->join('filestore_volume', null, null, 'ffv');
     $q->field($q->expr('concat_ws("/","' . $this->api->pm->base_path . '",ffv.dirname,ffs.filename)'));
     $q->where('ffs.id', $this);
     $select->field($q, $this->short_name . '_url');
 }