/[drupal]/contributions/modules/ulink/ulink_user.inc
ViewVC logotype

Contents of /contributions/modules/ulink/ulink_user.inc

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


Revision 1.4 - (show annotations) (download) (as text)
Tue Jul 17 16:32:46 2007 UTC (2 years, 4 months ago) by garthee
Branch: MAIN
CVS Tags: DRUPAL-5--5-0, DRUPAL-5--6-0, HEAD
Changes since 1.3: +9 -3 lines
File MIME type: text/x-php
added inline api do
1 <?php
2 /**
3 * Implementation of hook_ulink_user()
4 */
5 function ulink_ulink_user($link, $user = NULL){
6 return _ulink_ulink_xxx('user', $link, $user);
7 }
8 /**
9 * Implementation of hook_ulink_user_settings()
10 */
11 function ulink_ulink_user_settings() {
12 return _ulink_ulink_settings_builder('user');
13 }
14 /**
15 * Implementation of hook_ulink_user_info()
16 */
17 function ulink_ulink_user_info() {
18 return t(' Three modes of rendering are possible. Hardcoded rendering for novice users and PHPcode for advanced users. In the macro mode TOKENS can be used. Use configurations to individually configure them to match the requirement.');
19 }
20 /*
21 * support functions to provide extra settings pages.
22 */
23 function _ulink_user_settings_1() {
24 return system_settings_form(_ulink_xxx_settings_1('user'));
25 }
26 function _ulink_user_settings_2() {
27 return system_settings_form(_ulink_xxx_settings_2('user'));
28 }
29 function _ulink_user_settings_3() {
30 return system_settings_form(_ulink_xxx_settings_3('user'));
31 }

  ViewVC Help
Powered by ViewVC 1.1.2