source: trunk/information.php

Last change on this file was 2, checked in by george, 14 years ago
  • Přidáno: Trunk revize 13719.
File size: 2.6 KB
Line 
1<?php
2
3/***************************************************************************
4* Dolphin Smart Community Builder
5* -----------------
6* begin : Mon Mar 23 2006
7* copyright : (C) 2006 BoonEx Group
8* website : http://www.boonex.com/
9* This file is part of Dolphin - Smart Community Builder
10*
11* Dolphin is free software. This work is licensed under a Creative Commons Attribution 3.0 License.
12* http://creativecommons.org/licenses/by/3.0/
13*
14* Dolphin is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
15* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16* See the Creative Commons Attribution 3.0 License for more details.
17* You should have received a copy of the Creative Commons Attribution 3.0 License along with Dolphin,
18* see license.txt file; if not, write to marketing@boonex.com
19***************************************************************************/
20
21require_once( 'inc/header.inc.php' );
22require_once( BX_DIRECTORY_PATH_INC . 'design.inc.php' );
23
24// --------------- page variables and login
25
26$_page['name_index'] = 11;
27$_page['css_name'] = 'about_us.css';
28
29check_logged();
30
31$_page['header'] = _t( "Information" );
32$_page['header_text'] = _t( "Information", $site['title'] );
33
34// --------------- page components
35
36$_ni = $_page['name_index'];
37$_page_cont[$_ni]['page_main_code'] = PageCompMainCode();
38
39// --------------- [END] page components
40
41PageCode();
42
43// --------------- page components functions
44
45/**
46 * page code function
47 */
48function PageCompMainCode()
49{
50 global $oTemplConfig;
51
52 $ret = "We are sorry, but this application is not available to you, because you have the Ray Lite version integrated into Dolphin. To make the desktop IM function available we recommend that you purchase the <a href=\"http://www.expertzzz.com/WDownloads/home/40/\">Ray Pro</a>. <br /><br /> Ray Pro - #1 Community Widget Suite is an advanced, well-designed, fully controlled and multifunctional web communication package; including Flash chat withA/V conferencing, A/V recorder, Instant Messenger, MP3 player, online Presence and Desktop Presence (the ability to communicate without browsing to your site). Ray comes with it's own free multimedia server that allows hosting our product any where you want. We also recommend \"hostforweb\" for hosting services. For more information about Ray Pro follow this <a href=\"http://www.boonex.com/products/ray/ \">link</a>.";
53
54 return DesignBoxContent( "Information", $ret, $oTemplConfig -> PageCompThird_db_num );
55}
56
57?>
Note: See TracBrowser for help on using the repository browser.