[Release]MX Meeting Module v 1.1.0

Allgemeiner Support zum phpBB 2 Board und phpBB 2 Modifikationen
Forumsregeln
Auch wenn hier der Support für phpBB 2 weiterhin aufrecht erhalten bleibt, weisen wir darauf hin, dass das phpBB 2 nicht mehr offiziell unterstützt und weiterentwickelt wird!
Antworten
selven
Beiträge: 6
Registriert: Fr 21.Jan, 2005 17:42

[Release]MX Meeting Module v 1.1.0

Beitrag von selven »

Hi i've released MX Meeting Module 1.1.0 based on yours Meeting Mod 1.0.6.
The module has required an totally rewritten of code for work in mx-portal, and i have fixed some things (like language including for example)
if you want examine the module this is the disclaimer:
Implement a meeting managemant for example to initiate a board meeting with your users!
Features:
  • Fully integrated with Mx-System backend (DB, session, template, multi languages..)
    Powerful and handy AdminCP
    Comment system
    Search functions
Support:Here
Demo:Here
Download:Here
I've change the copyright notice in evry file because is different from original, but i have taken intact the copyright notice in footer. if you have question or something post in support forum.
selven
Beiträge: 6
Registriert: Fr 21.Jan, 2005 17:42

Beitrag von selven »

ops i forgot this is language italian for meetin mod v 1.0.6

Code: Alles auswählen

<?php

/***************************************************************************
 *                            lang_meeting.php [Italian]
 *                              -------------------
 *     begin                : Fri Gen 20 2005
 *     copyright            : (C) 2005 Selven
 *     email                : info@zaion.com
 *
 *     $Id: lang_meeting.php,v 1.0.0 2005/01/20 18:21:19 Selven Exp $
 *
 ****************************************************************************/

/***************************************************************************
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 2 of the License, or
 *   (at your option) any later version.
 *
 ***************************************************************************/

// Administration
$lang['Meeting_admin'] = 'Incontri';
$lang['Meeting_add_new'] = 'Aggiungi nuovo incontro';
$lang['Meeting_manage'] = 'Gestisci incontri';
$lang['Meeting_manage_explain'] = 'Da qui puoi gestire tutti gli incontri salvati.';
$lang['Meeting_delete'] = 'Cancella incontro?';
$lang['Meeting_delete_explain'] = 'Sicuro di voler cancellare questo incontro?';
$lang['Meeting_add'] = 'Aggiungi nuovo incontro';
$lang['Meeting_edit'] = 'Modifica incontro';
//User part
$lang['Meeting'] = 'Gestione incontri';
$lang['Meeting_until'] = 'Limite per registrazione';
$lang['Meeting_location'] = 'Località';
$lang['Meeting_subject'] = 'Titolo';
$lang['Meeting_closed'] = 'Chiuso';
$lang['No_meeting'] = 'Nessun incontro trovato';
$lang['Meeting_no_period'] = 'Periodo di registrazione scaduto';
$lang['Meeting_desc'] = 'Descrizione';
$lang['Meeting_link'] = 'Collegamento';
$lang['Meeting_places'] = 'Limite posti';
$lang['Meeting_usergroup'] = 'Gruppi utenti';
$lang['Meeting_filter'] = 'Filtra per campi';
$lang['Meeting_all'] = 'Tutti gli stati';
$lang['Meeting_open'] = 'Attivo';
$lang['Meeting_sign_on'] = 'Segnati nell\'incontro con la promessa di';
$lang['Meeting_sign_edit'] = 'Promessa cambiata in';
$lang['Meeting_sign_off'] = 'Escludimi dall\'incontro';
$lang['Meeting_sign_off_explain'] = 'Sicuro di volerti cancellare da questo incontro?';
$lang['Meeting_detail'] = 'Dettagli incontro';
$lang['Meeting_viewlist'] = 'Lista incontri';
$lang['Meeting_userlist'] = 'Utenti registrati';
$lang['Meeting_no_user'] = 'Nessun utente registrato al momento';
$lang['Meeting_free_places'] = 'Totale posti liberi';
$lang['Meeting_sure_total'] = 'Utenti registrati in percentuale';
$lang['Meeting_sure_total_user'] = 'Promesse utenti in percentuale';
$lang['Meeting_statistic'] = 'Statistiche';
$lang['Meeting_comments'] = 'Commenti su questo incontro';
$lang['Meeting_comment'] = 'Commento utente';
$lang['Meeting_enter_comment'] = 'Inserisci un commento';
$lang['No_active_meetings'] = 'Nessun incontro programmato';
$lang['One_active_meeting'] = 'Un incontro programmato';
$lang['Active_meetings'] = '%s incontri programmati';

//
// That's all Folks!
// -------------------------------------------------

?>
Benutzeravatar
oxpus
Administrator
Beiträge: 28735
Registriert: Mo 27.Jan, 2003 22:13
Wohnort: Bad Wildungen
Kontaktdaten:

Beitrag von oxpus »

Thanks for it!
Nice to see that my mods will be converted to different systems.
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
selven
Beiträge: 6
Registriert: Fr 21.Jan, 2005 17:42

Beitrag von selven »

if you have some question or anithing post in support forum as you can see i've added some little functions and "formatted" the code an big suggest is to use this function to include language file

Code: Alles auswählen

//
// Include Language
//
$language = $userdata['user_lang'];
if ( !file_exists($phpbb_root_path . 'language/lang_' . $language . '/lang_meeting.'.$phpEx) )
{
$language = $board_config['default_lang'];
}
else if ( !file_exists($phpbb_root_path . 'language/lang_' . $language . '/lang_meeting.'.$phpEx) )
{
	$language = 'english';
}
include($phpbb_root_path . 'language/lang_' . $language . '/lang_meeting.' . $phpEx);
selven
Beiträge: 6
Registriert: Fr 21.Jan, 2005 17:42

Beitrag von selven »

an thing, where can i found the copyright userlist signature list and this select expand bbocode?
Benutzeravatar
oxpus
Administrator
Beiträge: 28735
Registriert: Mo 27.Jan, 2003 22:13
Wohnort: Bad Wildungen
Kontaktdaten:

Beitrag von oxpus »

I was not including the language file at this point, because on most of the pages these values aren't needed. This produce unneeded memory usage and loading times ;)

The copyright list is a mod just produced for phpbb2.de and oxpus.de. There will never be a mod release for this!

And the CODE/QUOTE expland box names Fi Divexpand 2. Search for it in the Forum Snippet.
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
selven
Beiträge: 6
Registriert: Fr 21.Jan, 2005 17:42

Beitrag von selven »

i do not follow you include language files using only the

Code: Alles auswählen

$language = $userdata['user_lang']; 
include($phpbb_root_path . 'language/lang_' . $language . '/lang_meeting.' . $phpEx);
in this mode if i do not upload all lang_meeting (for example i have board in anglish and french and i upload only english language of lang_meeting) the mod do not have any tipe of language with my function the system check the existance of file and if is not present use the english one no major loading time ;)
Benutzeravatar
oxpus
Administrator
Beiträge: 28735
Registriert: Mo 27.Jan, 2003 22:13
Wohnort: Bad Wildungen
Kontaktdaten:

Beitrag von oxpus »

Yes, the default workflow.
But if a language file for an installed language will not exist, the admin/webmaster will do a bad job ;)
Okay, including the language files are possible to include on several points. Each admin can do it as he like. My version will save a little bit server performance.
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
Antworten