profile_theme
modules/profile/profile.module, строка 53
- Версии
- 6
profile_theme()
Реализация hook_theme()
.
Код
<?php
function profile_theme() {
return array(
'profile_block' => array(
'arguments' => array('account' => NULL, 'fields' => array()),
'template' => 'profile-block',
),
'profile_listing' => array(
'arguments' => array('account' => NULL, 'fields' => array()),
'template' => 'profile-listing',
),
'profile_wrapper' => array(
'arguments' => array('content' => NULL),
'template' => 'profile-wrapper',
),
'profile_admin_overview' => array(
'arguments' => array('form' => NULL),
'file' => 'profile.admin.inc',
)
);
}
?>
Войдите или зарегистрируйтесь, чтобы получить возможность отправлять комментарии