function bear_necessities_default_linkit_profiles in Bear 7
Same name and namespace in other branches
- 7.2 modules/bear_necessities/bear_necessities.linkit_profiles.inc \bear_necessities_default_linkit_profiles()
Implements hook_default_linkit_profiles().
File
- modules/
bear_necessities/ bear_necessities.linkit_profiles.inc, line 10 - bear_necessities.linkit_profiles.inc
Code
function bear_necessities_default_linkit_profiles() {
$export = array();
$linkit_profile = new stdClass();
$linkit_profile->disabled = FALSE;
/* Edit this to true to make a default linkit_profile disabled initially */
$linkit_profile->api_version = 1;
$linkit_profile->name = 'default';
$linkit_profile->admin_title = 'Default';
$linkit_profile->data = array(
'plugins' => array(
'entity:taxonomy_term' => array(
'weight' => '0',
'enabled' => 0,
),
'entity:node' => array(
'weight' => '0',
'enabled' => 1,
),
'entity:file' => array(
'weight' => '0',
'enabled' => 0,
),
'entity:user' => array(
'weight' => '0',
'enabled' => 1,
),
),
'entity:node' => array(
'result_description' => '',
'include_unpublished' => 0,
),
'entity:file' => array(
'result_description' => '',
'bundles' => array(
'image' => 0,
'video' => 0,
'audio' => 0,
'document' => 0,
),
'group_by_bundle' => 0,
'show_scheme' => 0,
'group_by_scheme' => 0,
'image_extra_info' => array(
'thumbnail' => 'thumbnail',
'dimensions' => 'dimensions',
),
),
'entity:taxonomy_term' => array(
'result_description' => '',
),
'entity:user' => array(
'result_description' => '',
),
'autocomplete' => array(
'charLimit' => 3,
'wait' => 350,
'remoteTimeout' => 10000,
),
'attributes' => array(
'rel' => array(
'weight' => '0',
'enabled' => 0,
),
'class' => array(
'weight' => '0',
'enabled' => 1,
),
'accesskey' => array(
'weight' => '0',
'enabled' => 0,
),
'id' => array(
'weight' => '0',
'enabled' => 0,
),
'title' => array(
'weight' => '0',
'enabled' => 1,
),
),
);
$linkit_profile->role_rids = array(
2 => 1,
);
$linkit_profile->weight = 0;
$export['default'] = $linkit_profile;
return $export;
}