Drupal user_hook in custom module - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T15:51:12Zhttp://stackoverflow.com/feeds/question/952729http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/952729/drupal-userhook-in-custom-module1Drupal user_hook in custom moduleunknown (google)2009-06-04T19:49:14Z2009-06-04T21:23:19Z
<p>Modifying download_count module to include information about users who downloaded files. Want to show this info on users' profile pages.</p>
<p>Here's the code:</p>
<pre><code>function download_count_user($op, &$edit, &$account, $caterory = NULL) {
if ($op == 'view')
{
$result = db_query("SELECT filename FROM file_downloads_users WHERE user_id = %d", $account->uid);
while ($file_array = db_fetch_object($result)) {
$file_str .= $file->filename . '<br/>';
}
$items['downloads'] = array(
'title' => t('Files'),
'value' => $file_str,
'class' => 'member'
);
return array(t('Downloads')=>$items);
}
}
</code></pre>
<p>Doesn't give me any errors but doesn't show anything on My Account page either.</p>
http://stackoverflow.com/questions/952729/drupal-userhook-in-custom-module/952765#9527652Answer by jskulski for Drupal user_hook in custom modulejskulski2009-06-04T19:57:42Z2009-06-04T19:57:42Z<p>You don't want to modify a module. Drupal is built very very carefully to avoid having to hack core or contrib. Unless of course you are contributing a patch back.</p>
<p>The right way is to build your own custom module to do this (that would require the user downloads module) and implement the hook almost exactly what you're doing here.</p>
<ol>
<li>The function is getting run (module enabled, var_dump ing or krumo'ing causes output?, cache cleared)</li>
<li>The way you are keying your variables is for Drupal 5.x and below. In D6, you add to $account->content. Which version of drupal are you using? </li>
</ol>
<p>Check out user_user() (in user.module): </p>
<pre><code> $account->content['user_picture'] = array(
'#value' => theme('user_picture', $account),
'#weight' => -10,
);
</code></pre>
http://stackoverflow.com/questions/952729/drupal-userhook-in-custom-module/953190#9531900Answer by unknown (google) for Drupal user_hook in custom moduleunknown (google)2009-06-04T21:23:19Z2009-06-04T21:23:19Z<pre><code> $account->content['summary']['file_downloads'] = array(
'#type' => 'user_profile_item',
'#title' => t('File Downloads'),
'#value' => $file_str,
'#weight' => 1
);
</code></pre>