You are here

function og_migrate_get_plugins in Organic groups 7

Get all organic groups migrate plugins.

5 calls to og_migrate_get_plugins()
og_migrate_batch in og_migrate/og_migrate.module
Helper function to create a batch.
og_migrate_build_dependencies in og_migrate/og_migrate.module
Find dependencies any level deep and fill in required by information too.
og_migrate_get_accessible_plugins in og_migrate/og_migrate.module
Get all the plugins after executing their access callback functions.
og_migrate_init in og_migrate/og_migrate.module
Implements hook_init().
og_migrate_register_plugins in og_migrate/og_migrate.module
Register plugins that are not in the database yet.

File

og_migrate/og_migrate.module, line 233
Migrate and upgrade Organic groups data.

Code

function og_migrate_get_plugins() {
  ctools_include('plugins');
  return ctools_get_plugins('og_migrate', 'og_migrate');
}