/[drupal]/contributions/modules/gamertags/gamertags.module
ViewVC logotype

Diff of /contributions/modules/gamertags/gamertags.module

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.1.4.10 by pobster, Tue Nov 17 07:32:44 2009 UTC revision 1.1.4.11 by pobster, Fri Nov 20 21:39:40 2009 UTC
# Line 1  Line 1 
1  <?php  <?php
2  // $Id: gamertags.module,v 1.1.4.9 2009/11/09 12:19:29 pobster Exp $  // $Id: gamertags.module,v 1.1.4.10 2009/11/17 07:32:44 pobster Exp $
3    
4  /**  /**
5   * @file   * @file
# Line 70  function gamertags_theme() { Line 70  function gamertags_theme() {
70      'gamertags' => array(      'gamertags' => array(
71        'arguments' => array('url' => NULL, 'user' => NULL, 'console' => NULL, 'region' => NULL),        'arguments' => array('url' => NULL, 'user' => NULL, 'console' => NULL, 'region' => NULL),
72      ),      ),
73      'gamertags_all' => array(      'gamertags_render' => array(
74        'arguments' => array('user' => NULL),        'arguments' => array('user' => NULL),
75      ),      ),
76    );    );
# Line 393  function theme_gamertags($url, $user, $c Line 393  function theme_gamertags($url, $user, $c
393  /**  /**
394   * Returns all Gamertags for a specified user   * Returns all Gamertags for a specified user
395   */   */
396  function theme_gamertags_all($user) {  function theme_gamertags_render($user) {
397    drupal_add_css(drupal_get_path('module', 'gamertags') .'/gamertags.css');    drupal_add_css(drupal_get_path('module', 'gamertags') .'/gamertags.css');
398    $output = array();    $output = array();
399    if (variable_get('gamertags_collect_xbox', TRUE) && $user->xbox_gamertag) {    if (variable_get('gamertags_collect_xbox', TRUE) && $user->xbox_gamertag) {

Legend:
Removed from v.1.1.4.10  
changed lines
  Added in v.1.1.4.11

  ViewVC Help
Powered by ViewVC 1.1.3