/** * インストールされているプラグインを取得する。 */ function getAllPlugin() { $objQuery = new SC_Query_Ex(); $col = '*'; $table = 'dtb_plugin'; $where = 'del_flg = 0'; // XXX 2.11.0 互換のため $arrCols = $objQuery->listTableFields($table); if (in_array('rank', $arrCols)) { $objQuery->setOrder('rank DESC'); } $arrRet = $objQuery->select($col, $table, $where); return $arrRet; }