You are here

function i18npanels_panels_content_types in Internationalization 5.2

Same name and namespace in other branches
  1. 5.3 contrib/i18npanels.module \i18npanels_panels_content_types()

Callback function to supply a list of content types.

File

contrib/i18npanels.module, line 6

Code

function i18npanels_panels_content_types() {
  $items['i18n_custom'] = array(
    'callback' => 'i18npanels_panels_content_custom',
    'admin' => 'i18npanels_panels_admin_custom',
  );
  return $items;
}