Browse Source
- Fixing the CSS to put select in the header
- Fixing the CSS to put select in the header
- Start implementing the chatrooms - Fixing some headerspull/16/head
24 changed files with 221 additions and 50 deletions
-
2app/assets/js/movim_websocket.js
-
8app/helpers/StringHelper.php
-
5app/models/postn/PostnDAO.php
-
2app/widgets/Avatar/_avatar_form.tpl
-
13app/widgets/Chat/Chat.php
-
3app/widgets/Chat/_chat_header.tpl
-
8app/widgets/Chat/_chat_messages.tpl
-
7app/widgets/Chat/chat.js
-
24app/widgets/Chats/Chats.php
-
1app/widgets/Chats/_chatrooms.tpl
-
9app/widgets/Chats/_chats.tpl
-
2app/widgets/Chats/chats.js
-
13app/widgets/Header/_header_main.tpl
-
70app/widgets/Menu/Menu.php
-
21app/widgets/Menu/_menu_list.tpl
-
1app/widgets/Menu/locales.ini
-
6app/widgets/Post/_post.tpl
-
10app/widgets/Post/_post_header.tpl
-
1app/widgets/Post/locales.ini
-
2app/widgets/Vcard4/locales.ini
-
2app/widgets/Vcard4/vcard4.tpl
-
15themes/material/css/color.css
-
44themes/material/css/form.css
-
2themes/material/css/style.css
@ -0,0 +1 @@ |
|||
|
|||
@ -1,5 +1,16 @@ |
|||
<header id="header"> |
|||
<span id="menu" class="on_mobile icon" onclick="MovimTpl.showMenu()"><i class="md md-menu"></i></span> |
|||
<span class="on_desktop icon"><i class="md md-speaker-notes"></i></span> |
|||
<h2>{$c->__('page.news')}</h2> |
|||
<form> |
|||
<div> |
|||
<div class="select"> |
|||
<select name="language" id="language"> |
|||
<option onclick="Menu_ajaxGetAll()" selected="selected" value="all">All **FIXME*</option> |
|||
<option onclick="Menu_ajaxGetNews()" value="news">News</option> |
|||
<option onclick="Menu_ajaxGetFeed()" value="contacts">Contacts</option> |
|||
</select> |
|||
</div> |
|||
</div> |
|||
</form> |
|||
<!--<h2>{$c->__('page.news')}</h2>--> |
|||
</header> |
|||
@ -1,2 +1,3 @@ |
|||
menu.empty_title = 'Hello' |
|||
menu.contact_post = 'Contact post' |
|||
menu.empty = 'Welcome on your news feed, here you will see all the posts published in the groups you have subscribed.' |
|||
@ -1,7 +1,11 @@ |
|||
<span id="back" class="on_mobile icon" onclick="MovimTpl.hidePanel()"><i class="md md-arrow-back"></i></span> |
|||
<span class="on_desktop icon" onclick="MovimTpl.hidePanel()"><i class="md md-textsms"></i></span> |
|||
<span id="back" class="icon" onclick="MovimTpl.hidePanel()"><i class="md md-arrow-back"></i></span> |
|||
|
|||
{if="$post != null"} |
|||
<h2>{$post->title}</h2> |
|||
{if="$post->title != null"} |
|||
<h2>{$post->title}</h2> |
|||
{else} |
|||
<h2>{$c->__('post.default_title')}</h2> |
|||
{/if} |
|||
{else} |
|||
<h2>Empty</h2> |
|||
{/if} |
|||
@ -1,2 +1,3 @@ |
|||
post.news_feed = 'News Feed' |
|||
post.default_title = 'Contact publication' |
|||
post.placeholder = 'Discover and register to the groups you are interested in' |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue