как назвать ключ аргументов в hook_theme,
например:
function user_theme() {
return array(
'user_picture' => array(
'arguments' => array('account' => NULL),
'template' => 'user-picture',
),
'user_profile' => array(
'arguments' => array('account' => NULL),
'template' => 'user-profile',
'file' => 'user.pages.inc',
),
'user_list' => array('arguments' => array('users' => NULL, 'title' => NULL),),
);
}
почему ключ массива аргументов это "account", "users" "title", как их получить,Могу ли я назвать их в других вещах.спасибо.