'xmlsitemap_user_xmlsitemap_process_user_links', ); } /** * Implements hook_cron(). * * Process old users not found in the {xmlsitemap} table. */ function xmlsitemap_user_cron() { xmlsitemap_user_xmlsitemap_index_links(xmlsitemap_var('batch_limit')); } /** * Implements hook_xmlsitemap_index_links(). */ function xmlsitemap_user_xmlsitemap_index_links($limit) { $uids = db_query_range("SELECT u.uid FROM {users} u LEFT JOIN {xmlsitemap} x ON x.type = 'user' AND u.uid = x.id WHERE x.id IS NULL AND u.uid > 0 ORDER BY u.uid DESC", 0, $limit)->fetchCol(); xmlsitemap_user_xmlsitemap_process_user_links($uids); } /** * Process user sitemap links. * * @param $uids * An array of user IDs. */ function xmlsitemap_user_xmlsitemap_process_user_links(array $uids) { $accounts = user_load_multiple($uids); foreach ($accounts as $account) { $link = xmlsitemap_user_create_link($account); xmlsitemap_link_save($link); } } /** * Implements hook_user_presave(). */ function xmlsitemap_user_user_presave(&$edit, $account, $category) { if (!empty($account->uid)) { $link = xmlsitemap_user_create_link($account); if (isset($edit['xmlsitemap'])) { $link = $edit['xmlsitemap'] + $link; unset($edit['xmlsitemap']); } xmlsitemap_link_save($link); } } /** * Implements hook_user_insert(). */ function xmlsitemap_user_user_insert(&$edit, $account, $category) { $link = xmlsitemap_user_create_link($account); xmlsitemap_link_save($link); } /** * Implements hook_user_update(). */ function xmlsitemap_user_user_update(&$edit, $account, $category) { $link = xmlsitemap_user_create_link($account); xmlsitemap_link_save($link); } /** * Implements hook_user_delete(). */ function xmlsitemap_user_user_delete($account) { xmlsitemap_link_delete('user', $account->uid); } /** * Implements hook_form_FORM_ID_alter(). * * @see user_admin_settings() * @see xmlsitemap_add_link_bundle_settings() */ function xmlsitemap_user_form_user_profile_form_alter(&$form, $form_state) { // Add the link options. module_load_include('inc', 'xmlsitemap', 'xmlsitemap.admin'); xmlsitemap_add_form_link_options($form, 'user', 'user', $form['#user']->uid); } /** * Implements hook_form_FORM_ID_alter(). * * @see user_admin_settings() * @see xmlsitemap_add_link_bundle_settings() */ function xmlsitemap_user_form_user_admin_settings_alter(&$form, $form_state) { module_load_include('inc', 'xmlsitemap', 'xmlsitemap.admin'); xmlsitemap_add_link_bundle_settings($form, $form_state, 'user', 'user'); $form['email_title'] += array('#weight' => 10); $form['email'] += array('#weight' => 10); } /** * Create a sitemap link from a user. * * The link will be saved as $account->xmlsitemap. * * @param $account * A user object. */ function xmlsitemap_user_create_link(stdClass &$account) { if (!isset($account->xmlsitemap)) { $account->xmlsitemap = array(); if ($account->uid && $link = xmlsitemap_link_load('user', $account->uid)) { $account->xmlsitemap = $link; } } $settings = xmlsitemap_link_bundle_load('user', 'user'); $uri = entity_uri('user', $account); $account->xmlsitemap += array( 'type' => 'user', 'id' => $account->uid, 'subtype' => 'user', 'status' => $settings['status'], 'status_default' => $settings['status'], 'status_override' => 0, 'priority' => $settings['priority'], 'priority_default' => $settings['priority'], 'priority_override' => 0, ); // The following values must always be checked because they are volatile. $account->xmlsitemap['loc'] = $uri['path']; $account->xmlsitemap['access'] = $account->uid && $account->status && $account->login && $account->access; $account->xmlsitemap['language'] = !empty($account->language) ? $account->language : LANGUAGE_NONE; return $account->xmlsitemap; } /** * Implementation of hook_variables(). */ function xmlsitemap_user_variables() { $defaults = array(); return $defaults; }