| 1 |
const { hooks } = WPUltimatePostGrid['wp-ultimate-post-grid/dist/shared']; |
| 2 |
|
| 3 |
import General from './General'; |
| 4 |
import Grid from './Grid'; |
| 5 |
import Manage from './Manage'; |
| 6 |
import Preview from './Preview'; |
| 7 |
import Template from './Template'; |
| 8 |
|
| 9 |
const api = hooks.applyFilters( 'api', { |
| 10 |
general: General, |
| 11 |
grid: Grid, |
| 12 |
manage: Manage, |
| 13 |
preview: Preview, |
| 14 |
template: Template, |
| 15 |
} ); |
| 16 |
|
| 17 |
export default api; |