I would like to disable or modify the default http://sitename/user/me/apps page. This is the page that lists all the logged in users API application and API keys. I would just like to create a sub-theme that overrides the default. Is there any documentation on this? Or what is the template name?
Solved! Go to Solution.
The template file is devconnect_developer_apps_list.tpl.php. Here is some more info on overriding themable output in Drupal 7.
That menu is built in the apigee_responsive_preprocess_page( ) function. There is an alter hook in there that you can use to add another link by implementing: YOUR_THEME_apigee_responsive_links_alter(&$links)
in the template.php file in your theme. So for example, if your theme was called 'green', it would look like:
function green_apigee_responsive_links_alter(&$links) { $links[] = array( 'classes' => array('first-class', 'second-class'), 'text' => t('Click Me'), 'url' => 'path/to/your/page', ); }