source: extensions/UserAdvManager/trunk/stuffs_module/main.inc.php @ 17969

Last change on this file since 17969 was 12271, checked in by Eric, 13 years ago
  • Bug 2447 fixed : Pre-filled text are localized for installation from scratch. If language is not supported by the plugin, the default language remains English.
  • maintain.inc.php refactory : Simplify installation from scratch and make code more readable.
  • Comments in all code are more readable.
  • Property svn:eol-style set to LF
File size: 371 bytes
Line 
1<?php
2
3if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
4
5$block['CONTENT'] = $datas;
6
7// Extended description
8// --------------------
9if (function_exists('get_extended_desc'))
10{
11  $block['CONTENT'] = get_extended_desc($block['CONTENT']);
12}
13else
14{
15  $block['CONTENT'] = get_user_language_desc($block['CONTENT']);
16}
17
18$block['TEMPLATE'] = 'stuffs_personal.tpl';
19
20?>
Note: See TracBrowser for help on using the repository browser.