mirror of https://github.com/movim/movim
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
3.5 KiB
74 lines
3.5 KiB
<?php
|
|
|
|
/**
|
|
* @package Widgets
|
|
*
|
|
* @file Vcard.php
|
|
* This file is part of MOVIM.
|
|
*
|
|
* @brief A widget which display some help
|
|
*
|
|
* @author Timothée Jaussoin <edhelas_at_gmail_dot_com>
|
|
*
|
|
* @version 1.0
|
|
* @date 3 may 2012
|
|
*
|
|
* Copyright (C)2010 MOVIM project
|
|
*
|
|
* See COPYING for licensing information.
|
|
*/
|
|
|
|
class Help extends WidgetBase
|
|
{
|
|
function WidgetLoad() {
|
|
}
|
|
|
|
function build()
|
|
{
|
|
?>
|
|
<div class="tabelem paddedtop" title="<?php echo t('Help'); ?>" id="help">
|
|
|
|
<h2><?php echo t('What is Movim?'); ?></h2>
|
|
|
|
<p><?php echo t('Visit the page %s What is Movim ? %s to know more about the project, its aims and understand how it works.',
|
|
'<a href="http://wiki.movim.eu/whoami" target="_blank">', '</a>'); ?></p>
|
|
|
|
<h2><?php echo t('What do the little banners refer to ?'); ?></h2>
|
|
<center>
|
|
<div style="width: 60px; height: 50px; display: inline-block;" class="protect white"></div>
|
|
<div style="width: 60px; height: 50px; display: inline-block;" class="protect green"></div>
|
|
<div style="width: 60px; height: 50px; display: inline-block;" class="protect orange"></div>
|
|
<div style="width: 60px; height: 50px; display: inline-block;" class="protect red"></div>
|
|
<div style="width: 60px; height: 50px; display: inline-block;" class="protect black"></div>
|
|
</center>
|
|
|
|
<p><?php echo t('Thanks to these five little banners, you can quickly identitfy the level of confdentiality applied to the information you provide.'); ?></p>
|
|
|
|
<p>
|
|
<ul class="clean">
|
|
<li><?php echo t('White, only you can see the information'); ?></li>
|
|
<li><?php echo t('Green, you have chosen some contacts who can see your information'); ?></li>
|
|
<li><?php echo t('Orange, all your contact list can see your information'); ?></li>
|
|
<li><?php echo t('Red, everybody in the XMPP network can see your information'); ?></li>
|
|
<li><?php echo t('Black, the whole Internet can see your information'); ?></li>
|
|
</ul>
|
|
</p>
|
|
|
|
<h2><?php echo t("Some features are missing/I can't do everything I used to do on other social networks"); ?></h2>
|
|
|
|
<p><?php echo t("Although Movim is evolving fast, many (many) features are missing. Be patient ;). You can have a look %s at next versions's roadmaps %s to know if the one you want is on its way.", '<a href="http://wiki.movim.eu/dev:roadmaps" target="_blank">', '</a>'); ?>
|
|
|
|
<?php echo t("Don't forget that Movim is an open source project, a helping hand is always welcome (see %s Can I participate %s)",
|
|
'<a href="http://wiki.movim.eu/whoami#how_can_i_help" target="_blank">', '</a>'); ?></p>
|
|
|
|
<h2><?php echo t("I can't find the answer to my question here"); ?></h2>
|
|
|
|
<p><?php echo t('Go to the %s to the Frequently Asked Questions %s or come ask your question on the official chatroom %s or via our mailing-list (%s see the dedicated page %s).',
|
|
'<a href="http://wiki.movim.eu/whoami#faq" target="_blank">', '</a>',
|
|
'<a href="xmpp:movim@conference.movim.eu" target="_blank">movim@conference.movim.eu</a>',
|
|
'<a href="http://wiki.movim.eu/mailing_list" target="_blank">', '</a>'); ?></p>
|
|
|
|
</div>
|
|
<?php
|
|
}
|
|
}
|