I'm having trouble loading the tempalte for the profile page. I'm getting this:
for this:
public function action_profile()
{
loadTemplate('Extauth');
}
I've added the link to the profile menu here:
'extauth' => array(
'label' => 'Connected Accounts',
'file' => 'Extauth.controller.php',
'controller' => 'Extauth_Controller',
'function' => 'action_profile',
'sc' => 'post',
'token' => 'profile-ea%u',
'password' => true,
'permission' => array(
'own' => array('profile_identity_any', 'profile_identity_own'),
'any' => array('profile_identity_any'),
),
),
Not sure what's going wrong. It's as if it's completely ignoring the loadTemplate call.
I have a "Extauth.template.php" file in themes/default/ with a template_main() function that just echoes 'Test'. But it won't show, and instead throws that error.