user.api.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467
  1. <?php
  2. /**
  3. * @file
  4. * Hooks provided by the User module.
  5. */
  6. /**
  7. * @addtogroup hooks
  8. * @{
  9. */
  10. /**
  11. * Act on user objects when loaded from the database.
  12. *
  13. * Due to the static cache in user_load_multiple() you should not use this
  14. * hook to modify the user properties returned by the {users} table itself
  15. * since this may result in unreliable results when loading from cache.
  16. *
  17. * @param $users
  18. * An array of user objects, indexed by uid.
  19. *
  20. * @see user_load_multiple()
  21. * @see profile_user_load()
  22. */
  23. function hook_user_load($users) {
  24. $result = db_query('SELECT uid, foo FROM {my_table} WHERE uid IN (:uids)', array(':uids' => array_keys($users)));
  25. foreach ($result as $record) {
  26. $users[$record->uid]->foo = $record->foo;
  27. }
  28. }
  29. /**
  30. * Respond to user deletion.
  31. *
  32. * This hook is invoked from user_delete_multiple() before field_attach_delete()
  33. * is called and before users are actually removed from the database.
  34. *
  35. * Modules should additionally implement hook_user_cancel() to process stored
  36. * user data for other account cancellation methods.
  37. *
  38. * @param $account
  39. * The account that is being deleted.
  40. *
  41. * @see user_delete_multiple()
  42. */
  43. function hook_user_delete($account) {
  44. db_delete('mytable')
  45. ->condition('uid', $account->uid)
  46. ->execute();
  47. }
  48. /**
  49. * Act on user account cancellations.
  50. *
  51. * This hook is invoked from user_cancel() before a user account is canceled.
  52. * Depending on the account cancellation method, the module should either do
  53. * nothing, unpublish content, or anonymize content. See user_cancel_methods()
  54. * for the list of default account cancellation methods provided by User module.
  55. * Modules may add further methods via hook_user_cancel_methods_alter().
  56. *
  57. * This hook is NOT invoked for the 'user_cancel_delete' account cancellation
  58. * method. To react on this method, implement hook_user_delete() instead.
  59. *
  60. * Expensive operations should be added to the global account cancellation batch
  61. * by using batch_set().
  62. *
  63. * @param $edit
  64. * The array of form values submitted by the user.
  65. * @param $account
  66. * The user object on which the operation is being performed.
  67. * @param $method
  68. * The account cancellation method.
  69. *
  70. * @see user_cancel_methods()
  71. * @see hook_user_cancel_methods_alter()
  72. */
  73. function hook_user_cancel($edit, $account, $method) {
  74. switch ($method) {
  75. case 'user_cancel_block_unpublish':
  76. // Unpublish nodes (current revisions).
  77. module_load_include('inc', 'node', 'node.admin');
  78. $nodes = db_select('node', 'n')
  79. ->fields('n', array('nid'))
  80. ->condition('uid', $account->uid)
  81. ->execute()
  82. ->fetchCol();
  83. node_mass_update($nodes, array('status' => 0));
  84. break;
  85. case 'user_cancel_reassign':
  86. // Anonymize nodes (current revisions).
  87. module_load_include('inc', 'node', 'node.admin');
  88. $nodes = db_select('node', 'n')
  89. ->fields('n', array('nid'))
  90. ->condition('uid', $account->uid)
  91. ->execute()
  92. ->fetchCol();
  93. node_mass_update($nodes, array('uid' => 0));
  94. // Anonymize old revisions.
  95. db_update('node_revision')
  96. ->fields(array('uid' => 0))
  97. ->condition('uid', $account->uid)
  98. ->execute();
  99. // Clean history.
  100. db_delete('history')
  101. ->condition('uid', $account->uid)
  102. ->execute();
  103. break;
  104. }
  105. }
  106. /**
  107. * Modify account cancellation methods.
  108. *
  109. * By implementing this hook, modules are able to add, customize, or remove
  110. * account cancellation methods. All defined methods are turned into radio
  111. * button form elements by user_cancel_methods() after this hook is invoked.
  112. * The following properties can be defined for each method:
  113. * - title: The radio button's title.
  114. * - description: (optional) A description to display on the confirmation form
  115. * if the user is not allowed to select the account cancellation method. The
  116. * description is NOT used for the radio button, but instead should provide
  117. * additional explanation to the user seeking to cancel their account.
  118. * - access: (optional) A boolean value indicating whether the user can access
  119. * a method. If #access is defined, the method cannot be configured as default
  120. * method.
  121. *
  122. * @param $methods
  123. * An array containing user account cancellation methods, keyed by method id.
  124. *
  125. * @see user_cancel_methods()
  126. * @see user_cancel_confirm_form()
  127. */
  128. function hook_user_cancel_methods_alter(&$methods) {
  129. // Limit access to disable account and unpublish content method.
  130. $methods['user_cancel_block_unpublish']['access'] = user_access('administer site configuration');
  131. // Remove the content re-assigning method.
  132. unset($methods['user_cancel_reassign']);
  133. // Add a custom zero-out method.
  134. $methods['mymodule_zero_out'] = array(
  135. 'title' => t('Delete the account and remove all content.'),
  136. 'description' => t('All your content will be replaced by empty strings.'),
  137. // access should be used for administrative methods only.
  138. 'access' => user_access('access zero-out account cancellation method'),
  139. );
  140. }
  141. /**
  142. * Add mass user operations.
  143. *
  144. * This hook enables modules to inject custom operations into the mass operations
  145. * dropdown found at admin/people, by associating a callback function with
  146. * the operation, which is called when the form is submitted. The callback function
  147. * receives one initial argument, which is an array of the checked users.
  148. *
  149. * @return
  150. * An array of operations. Each operation is an associative array that may
  151. * contain the following key-value pairs:
  152. * - "label": Required. The label for the operation, displayed in the dropdown menu.
  153. * - "callback": Required. The function to call for the operation.
  154. * - "callback arguments": Optional. An array of additional arguments to pass to
  155. * the callback function.
  156. *
  157. */
  158. function hook_user_operations() {
  159. $operations = array(
  160. 'unblock' => array(
  161. 'label' => t('Unblock the selected users'),
  162. 'callback' => 'user_user_operations_unblock',
  163. ),
  164. 'block' => array(
  165. 'label' => t('Block the selected users'),
  166. 'callback' => 'user_user_operations_block',
  167. ),
  168. 'cancel' => array(
  169. 'label' => t('Cancel the selected user accounts'),
  170. ),
  171. );
  172. return $operations;
  173. }
  174. /**
  175. * Retrieve a list of user setting or profile information categories.
  176. *
  177. * @return
  178. * An array of associative arrays. Each inner array has elements:
  179. * - "name": The internal name of the category.
  180. * - "title": The human-readable, localized name of the category.
  181. * - "weight": An integer specifying the category's sort ordering.
  182. * - "access callback": Name of the access callback function to use to
  183. * determine whether the user can edit the category. Defaults to using
  184. * user_edit_access(). See hook_menu() for more information on access
  185. * callbacks.
  186. * - "access arguments": Arguments for the access callback function. Defaults
  187. * to array(1).
  188. */
  189. function hook_user_categories() {
  190. return array(array(
  191. 'name' => 'account',
  192. 'title' => t('Account settings'),
  193. 'weight' => 1,
  194. ));
  195. }
  196. /**
  197. * A user account is about to be created or updated.
  198. *
  199. * This hook is primarily intended for modules that want to store properties in
  200. * the serialized {users}.data column, which is automatically loaded whenever a
  201. * user account object is loaded, modules may add to $edit['data'] in order
  202. * to have their data serialized on save.
  203. *
  204. * @param $edit
  205. * The array of form values submitted by the user.
  206. * @param $account
  207. * The user object on which the operation is performed.
  208. * @param $category
  209. * The active category of user information being edited.
  210. *
  211. * @see hook_user_insert()
  212. * @see hook_user_update()
  213. */
  214. function hook_user_presave(&$edit, $account, $category) {
  215. // Make sure that our form value 'mymodule_foo' is stored as
  216. // 'mymodule_bar' in the 'data' (serialized) column.
  217. if (isset($edit['mymodule_foo'])) {
  218. $edit['data']['mymodule_bar'] = $edit['mymodule_foo'];
  219. }
  220. }
  221. /**
  222. * A user account was created.
  223. *
  224. * The module should save its custom additions to the user object into the
  225. * database.
  226. *
  227. * @param $edit
  228. * The array of form values submitted by the user.
  229. * @param $account
  230. * The user object on which the operation is being performed.
  231. * @param $category
  232. * The active category of user information being edited.
  233. *
  234. * @see hook_user_presave()
  235. * @see hook_user_update()
  236. */
  237. function hook_user_insert(&$edit, $account, $category) {
  238. db_insert('mytable')
  239. ->fields(array(
  240. 'myfield' => $edit['myfield'],
  241. 'uid' => $account->uid,
  242. ))
  243. ->execute();
  244. }
  245. /**
  246. * A user account was updated.
  247. *
  248. * Modules may use this hook to update their user data in a custom storage
  249. * after a user account has been updated.
  250. *
  251. * @param $edit
  252. * The array of form values submitted by the user.
  253. * @param $account
  254. * The user object on which the operation is performed.
  255. * @param $category
  256. * The active category of user information being edited.
  257. *
  258. * @see hook_user_presave()
  259. * @see hook_user_insert()
  260. */
  261. function hook_user_update(&$edit, $account, $category) {
  262. db_insert('user_changes')
  263. ->fields(array(
  264. 'uid' => $account->uid,
  265. 'changed' => time(),
  266. ))
  267. ->execute();
  268. }
  269. /**
  270. * The user just logged in.
  271. *
  272. * @param $edit
  273. * The array of form values submitted by the user.
  274. * @param $account
  275. * The user object on which the operation was just performed.
  276. */
  277. function hook_user_login(&$edit, $account) {
  278. // If the user has a NULL time zone, notify them to set a time zone.
  279. if (!$account->timezone && variable_get('configurable_timezones', 1) && variable_get('empty_timezone_message', 0)) {
  280. drupal_set_message(t('Configure your <a href="@user-edit">account time zone setting</a>.', array('@user-edit' => url("user/$account->uid/edit", array('query' => drupal_get_destination(), 'fragment' => 'edit-timezone')))));
  281. }
  282. }
  283. /**
  284. * The user just logged out.
  285. *
  286. * Note that when this hook is invoked, the changes have not yet been written to
  287. * the database, because a database transaction is still in progress. The
  288. * transaction is not finalized until the save operation is entirely completed
  289. * and user_save() goes out of scope. You should not rely on data in the
  290. * database at this time as it is not updated yet. You should also note that any
  291. * write/update database queries executed from this hook are also not committed
  292. * immediately. Check user_save() and db_transaction() for more info.
  293. *
  294. * @param $account
  295. * The user object on which the operation was just performed.
  296. */
  297. function hook_user_logout($account) {
  298. db_insert('logouts')
  299. ->fields(array(
  300. 'uid' => $account->uid,
  301. 'time' => time(),
  302. ))
  303. ->execute();
  304. }
  305. /**
  306. * The user's account information is being displayed.
  307. *
  308. * The module should format its custom additions for display and add them to the
  309. * $account->content array.
  310. *
  311. * Note that when this hook is invoked, the changes have not yet been written to
  312. * the database, because a database transaction is still in progress. The
  313. * transaction is not finalized until the save operation is entirely completed
  314. * and user_save() goes out of scope. You should not rely on data in the
  315. * database at this time as it is not updated yet. You should also note that any
  316. * write/update database queries executed from this hook are also not committed
  317. * immediately. Check user_save() and db_transaction() for more info.
  318. *
  319. * @param $account
  320. * The user object on which the operation is being performed.
  321. * @param $view_mode
  322. * View mode, e.g. 'full'.
  323. * @param $langcode
  324. * The language code used for rendering.
  325. *
  326. * @see hook_user_view_alter()
  327. * @see hook_entity_view()
  328. */
  329. function hook_user_view($account, $view_mode, $langcode) {
  330. if (user_access('create blog content', $account)) {
  331. $account->content['summary']['blog'] = array(
  332. '#type' => 'user_profile_item',
  333. '#title' => t('Blog'),
  334. '#markup' => l(t('View recent blog entries'), "blog/$account->uid", array('attributes' => array('title' => t("Read !username's latest blog entries.", array('!username' => format_username($account)))))),
  335. '#attributes' => array('class' => array('blog')),
  336. );
  337. }
  338. }
  339. /**
  340. * The user was built; the module may modify the structured content.
  341. *
  342. * This hook is called after the content has been assembled in a structured array
  343. * and may be used for doing processing which requires that the complete user
  344. * content structure has been built.
  345. *
  346. * If the module wishes to act on the rendered HTML of the user rather than the
  347. * structured content array, it may use this hook to add a #post_render callback.
  348. * Alternatively, it could also implement hook_preprocess_user_profile(). See
  349. * drupal_render() and theme() documentation respectively for details.
  350. *
  351. * @param $build
  352. * A renderable array representing the user.
  353. *
  354. * @see user_view()
  355. * @see hook_entity_view_alter()
  356. */
  357. function hook_user_view_alter(&$build) {
  358. // Check for the existence of a field added by another module.
  359. if (isset($build['an_additional_field'])) {
  360. // Change its weight.
  361. $build['an_additional_field']['#weight'] = -10;
  362. }
  363. // Add a #post_render callback to act on the rendered HTML of the user.
  364. $build['#post_render'][] = 'my_module_user_post_render';
  365. }
  366. /**
  367. * Inform other modules that a user role is about to be saved.
  368. *
  369. * Modules implementing this hook can act on the user role object before
  370. * it has been saved to the database.
  371. *
  372. * @param $role
  373. * A user role object.
  374. *
  375. * @see hook_user_role_insert()
  376. * @see hook_user_role_update()
  377. */
  378. function hook_user_role_presave($role) {
  379. // Set a UUID for the user role if it doesn't already exist
  380. if (empty($role->uuid)) {
  381. $role->uuid = uuid_uuid();
  382. }
  383. }
  384. /**
  385. * Inform other modules that a user role has been added.
  386. *
  387. * Modules implementing this hook can act on the user role object when saved to
  388. * the database. It's recommended that you implement this hook if your module
  389. * adds additional data to user roles object. The module should save its custom
  390. * additions to the database.
  391. *
  392. * @param $role
  393. * A user role object.
  394. */
  395. function hook_user_role_insert($role) {
  396. // Save extra fields provided by the module to user roles.
  397. db_insert('my_module_table')
  398. ->fields(array(
  399. 'rid' => $role->rid,
  400. 'role_description' => $role->description,
  401. ))
  402. ->execute();
  403. }
  404. /**
  405. * Inform other modules that a user role has been updated.
  406. *
  407. * Modules implementing this hook can act on the user role object when updated.
  408. * It's recommended that you implement this hook if your module adds additional
  409. * data to user roles object. The module should save its custom additions to
  410. * the database.
  411. *
  412. * @param $role
  413. * A user role object.
  414. */
  415. function hook_user_role_update($role) {
  416. // Save extra fields provided by the module to user roles.
  417. db_merge('my_module_table')
  418. ->key(array('rid' => $role->rid))
  419. ->fields(array(
  420. 'role_description' => $role->description
  421. ))
  422. ->execute();
  423. }
  424. /**
  425. * Inform other modules that a user role has been deleted.
  426. *
  427. * This hook allows you act when a user role has been deleted.
  428. * If your module stores references to roles, it's recommended that you
  429. * implement this hook and delete existing instances of the deleted role
  430. * in your module database tables.
  431. *
  432. * @param $role
  433. * The $role object being deleted.
  434. */
  435. function hook_user_role_delete($role) {
  436. // Delete existing instances of the deleted role.
  437. db_delete('my_module_table')
  438. ->condition('rid', $role->rid)
  439. ->execute();
  440. }
  441. /**
  442. * @} End of "addtogroup hooks".
  443. */