function imce_user1_profile in IMCE 6
Same name and namespace in other branches
- 6.2 inc/imce.core.profiles.inc \imce_user1_profile()
- 7 inc/imce.core.profiles.inc \imce_user1_profile()
User1's profile.
2 calls to imce_user1_profile()
- imce_admin_theme in inc/
admin.inc - Admin form themed.
- imce_install_profiles in inc/
core_profiles.inc - Create core profiles and import settings from 5.x
File
- inc/
core_profiles.inc, line 106
Code
function imce_user1_profile() {
$profiles = variable_get('imce_profiles', array());
return isset($profiles[1]) ? $profiles[1] : imce_construct_profile('User-1', 0, 0, 0, '*', '1200x1200', 0, array(
array(
'.',
1,
1,
1,
1,
1,
1,
),
), array(
array(
'Small',
'90x90',
'small_',
'',
),
array(
'Medium',
'120x120',
'medium_',
'',
),
array(
'Large',
'180x180',
'large_',
'',
),
));
}