Get hands-on experience with 20+ free Google Cloud products and $300 in free credit for new customers.

Need to disable or modify the My Apps page in the developer portal

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 Solved
1 4 654
2 ACCEPTED SOLUTIONS

The template file is devconnect_developer_apps_list.tpl.php. Here is some more info on overriding themable output in Drupal 7.

View solution in original post

rpet2
New Member

@John Banning

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',
  );
}

View solution in original post

4 REPLIES 4