aboutsummaryrefslogtreecommitdiffstats
path: root/mayor-orig/mayor-base/www/include/alert
diff options
context:
space:
mode:
authorM.Gergo2019-03-08 21:20:34 +0100
committerM.Gergo2019-03-08 21:20:34 +0100
commitf51c9ed2abe5c68211bb3736be5f70b1fe2c9ec0 (patch)
treee13e60e4b94a3b58f1e2bfbe271102c8f04b67bd /mayor-orig/mayor-base/www/include/alert
parentc76a004b0135786f2742283f8d5f917106f58bd8 (diff)
downloadmayor-f51c9ed2abe5c68211bb3736be5f70b1fe2c9ec0.tar.gz
mayor-f51c9ed2abe5c68211bb3736be5f70b1fe2c9ec0.zip
további rendrakás
Diffstat (limited to 'mayor-orig/mayor-base/www/include/alert')
-rw-r--r--mayor-orig/mayor-base/www/include/alert/base.php38
-rw-r--r--mayor-orig/mayor-base/www/include/alert/hu_HU/base.php52
-rw-r--r--mayor-orig/mayor-base/www/include/alert/hu_HU/file.php9
-rw-r--r--mayor-orig/mayor-base/www/include/alert/hu_HU/ldap.php11
-rw-r--r--mayor-orig/mayor-base/www/include/alert/hu_HU/module-auth.php11
-rw-r--r--mayor-orig/mayor-base/www/include/alert/hu_HU/module-password.php18
-rw-r--r--mayor-orig/mayor-base/www/include/alert/hu_HU/module-session.php10
7 files changed, 149 insertions, 0 deletions
diff --git a/mayor-orig/mayor-base/www/include/alert/base.php b/mayor-orig/mayor-base/www/include/alert/base.php
new file mode 100644
index 00000000..3c886dcf
--- /dev/null
+++ b/mayor-orig/mayor-base/www/include/alert/base.php
@@ -0,0 +1,38 @@
+<?php
+#
+# MaYoR keretrendszer - figyelmeztető üzenetek
+#
+
+// Base
+if (file_exists('include/alert/'.$lang.'/base.php')) {
+ require_once('include/alert/'.$lang.'/base.php');
+} elseif (file_exists('include/alert/'._DEFAULT_LANG.'/base.php')) {
+ require_once('include/alert/'._DEFAULT_LANG.'/base.php');
+}
+
+// Policy - Backend
+if (file_exists('include/alert/'.$lang.'/'.$AUTH[$policy]['backend'].'.php')) {
+ require_once('include/alert/'.$lang.'/'.$AUTH[$policy]['backend'].'.php');
+} elseif (file_exists('include/alert/'._DEFAULT_LANG.'/'.$AUTH[$policy]['backend'].'.php')) {
+ require_once('include/alert/'._DEFAULT_LANG.'/'.$AUTH[$policy]['backend'].'.php');
+}
+
+// Module(s) - 2016
+try {
+ $_dirlist = scandir('include/alert/'.$lang.'/');
+ for ($i=0; $i<count($_dirlist); $i++) {
+ list($_filename,$_ext) = explode('.',$_dirlist[$i]);
+ list($_prefix,$_module) = explode('-',$_filename);
+ if (substr($_filename,0,7)==='module-' && $_ext == 'php' && in_array($_module,$VALID_MODULES)) {
+ if (file_exists('include/alert/'.$lang.'/module-'.$_module.'.php')) {
+ require_once('include/alert/'.$lang.'/module-'.$_module.'.php');
+ } elseif (file_exists('include/alert/'._DEFAULT_LANG.'/module-'.$_module.'.php')) {
+ require_once('include/alert/'._DEFAULT_LANG.'/module-'.$_module.'.php');
+ }
+ }
+ }
+} catch (Exception $e) {
+ $_SESSION['alert'][] = 'info:'.$e->getMessage();
+}
+
+?>
diff --git a/mayor-orig/mayor-base/www/include/alert/hu_HU/base.php b/mayor-orig/mayor-base/www/include/alert/hu_HU/base.php
new file mode 100644
index 00000000..744f40d5
--- /dev/null
+++ b/mayor-orig/mayor-base/www/include/alert/hu_HU/base.php
@@ -0,0 +1,52 @@
+<?php
+/*
+ Module: base
+*/
+
+//
+// Az $_SESSION['alert'] két részből áll: típus:hiba
+// típus: alert
+// message
+// page
+// info
+//
+
+$ALERT_MSG = array(
+
+ 'default' => '',
+ 'change_success' => 'Az adatmódosítás sikeresen megtörtént!',
+ 'page_missing' => 'A keresett oldal nem található a szerveren.',
+ 'sql_failure' => 'SQL adatbázis hiba!',
+ 'sql_warning' => 'SQL figyelmeztetés!',
+ 'sql_connect_failure'=> 'SQL adatbázis csatlakozási hiba!',
+ 'sql_query_failure' => 'SQL lekérdezési hiba!',
+ 'sql_select_db_failure' => 'A %0% modul %1% SQL adatbázisának kiválasztása nem sikerült!',
+ 'auth_failure' => 'Azonosítatlan felhasználó! Az adott hozzáférési szinten nem hitelesítetted magad!',
+ 'bad_pw' => 'Hibás jelszó!',
+ 'account_expired' => 'A jelszó érvényessége %0% napja lejárt!',
+ 'account_warning' => 'A jelszó %0% nap múlva lejár!',
+ 'warn_account_disable' => 'A felhasználói fiók %0% nap múlva letiltásra kerül!',
+ 'empty_field' => 'Üres adatbeviteli mező! Egy kötelező paraméter nincs megadva!', // login
+ 'session_alter_needed' => 'Nem egyező hash-hossz az adatbázisban! (%0% &rarr; %1%)',
+ 'insufficient_access' => 'Jogosulatlan hozzáférés!',
+ 'wrong_data' => 'Hibás/rossz adat!',
+ 'wrong_page' => 'Hibás oldalhivatkozás!',
+ 'deadline_expired' => 'A módosítási határidő lejárt!',
+ 'pw_change_success' => 'A jelszóváltoztatás sikeresen megtörtént',
+ 'file_not_found' => 'A file nem található!',
+ 'success' => 'A művelet sikeresen befejeződött!',
+ 'not_changed' => 'Nem történt adatváltozás.',
+ 'unknown_type' => 'Ismeretlen tipus',
+ 'config_error' => 'Konfigurációs hiba',
+ 'not_valid_form' => 'Érvénytelen űrlapadatok! A feldolgozás megszakadt.',
+ 'raw' => 'Részletek:',
+);
+
+// + auth
+
+$ALERT_MSG['no_account'] = 'Rossz azonosítót adtál meg!';
+$ALERT_MSG['account_disabled'] = 'A felhasználói fiók letilrásra került, ezzel az azonosítóval nem lehet belépni! További információkért fordulj a rendszergazdához!';
+$ALERT_MSG['force_pw_update'] = 'A jelszó megváltoztatása kötelező!';
+$ALERT_MSG['cookie'] = 'Lejárt a munkamenet vagy nem engedélyezett a sütik használata.';
+
+?>
diff --git a/mayor-orig/mayor-base/www/include/alert/hu_HU/file.php b/mayor-orig/mayor-base/www/include/alert/hu_HU/file.php
new file mode 100644
index 00000000..2696c9f3
--- /dev/null
+++ b/mayor-orig/mayor-base/www/include/alert/hu_HU/file.php
@@ -0,0 +1,9 @@
+<?php
+/*
+ Module: base/file
+*/
+
+// File-auth
+$ALERT_MSG['file_open_failure'] = 'Sikertelen file megnyitás!';
+
+?>
diff --git a/mayor-orig/mayor-base/www/include/alert/hu_HU/ldap.php b/mayor-orig/mayor-base/www/include/alert/hu_HU/ldap.php
new file mode 100644
index 00000000..1a089128
--- /dev/null
+++ b/mayor-orig/mayor-base/www/include/alert/hu_HU/ldap.php
@@ -0,0 +1,11 @@
+<?php
+/*
+ Module: base/ldap
+*/
+
+// LDAP-auth
+$ALERT_MSG['ldap_failure'] = 'LDAP adatbázis hiba!';
+$ALERT_MSG['ldap_bind_failure'] = 'LDAP adatbázis csatlakozási hiba!';
+$ALERT_MSG['ldap_search_failure'] = 'Az LDAP adatkeresés nem sikerült! Ellenőrizd a jogosultságaidat!';
+
+?>
diff --git a/mayor-orig/mayor-base/www/include/alert/hu_HU/module-auth.php b/mayor-orig/mayor-base/www/include/alert/hu_HU/module-auth.php
new file mode 100644
index 00000000..b7ad2333
--- /dev/null
+++ b/mayor-orig/mayor-base/www/include/alert/hu_HU/module-auth.php
@@ -0,0 +1,11 @@
+<?php
+/*
+ Module: base/password
+*/
+
+$ALERT_MSG['no_account'] = 'Rossz azonosítót adtál meg!';
+$ALERT_MSG['account_disabled'] = 'A felhasználói fiók letilrásra került, ezzel az azonosítóval nem lehet belépni!<br/>További információkért fordulj a rendszergazdához!';
+$ALERT_MSG['force_pw_update'] = 'A jelszó megváltoztatása kötelező!';
+$ALERT_MSG['cookie'] = 'Lejárt a munkamenet vagy nem engedélyezett a sütik használata.';
+$ALERT_MSG['pw_reset_disabled'] = 'Jelszóemlékeztető kérés ezen a hitelesítési szinten nem engedélyezett.';
+?>
diff --git a/mayor-orig/mayor-base/www/include/alert/hu_HU/module-password.php b/mayor-orig/mayor-base/www/include/alert/hu_HU/module-password.php
new file mode 100644
index 00000000..f56a8c85
--- /dev/null
+++ b/mayor-orig/mayor-base/www/include/alert/hu_HU/module-password.php
@@ -0,0 +1,18 @@
+<?php
+/*
+ Module: base/password
+*/
+
+$ALERT_MSG['force_pw_update'] = 'A jelszó megváltoztatása kötelező!';
+$ALERT_MSG['pw_change_failed'] = 'A jelszóváltoztatás nem sikerült!';
+$ALERT_MSG['pw_change_disabled'] = 'A jelszóváltoztatás tiltott!';
+$ALERT_MSG['pw_change_success'] = 'A jelszóváltoztatás sikerült!';
+$ALERT_MSG['pw_not_match'] = 'A jelszó és a megerősítés nem egyezik!';
+$ALERT_MSG['pw_not_changed'] = 'A jelszó nem változott. Az új jelszónak különböznie kell a régi jelszótól!';
+
+// Jelszóváltoztatás előtt mindenképp authentikáció van - kellenek a hibaüzenetek
+if (file_exists('include/alert/hu_HU/module-auth.php')) {
+ require('include/alert/hu_HU/module-auth.php');
+}
+
+?>
diff --git a/mayor-orig/mayor-base/www/include/alert/hu_HU/module-session.php b/mayor-orig/mayor-base/www/include/alert/hu_HU/module-session.php
new file mode 100644
index 00000000..75f0b0bc
--- /dev/null
+++ b/mayor-orig/mayor-base/www/include/alert/hu_HU/module-session.php
@@ -0,0 +1,10 @@
+<?php
+/*
+ Module: base/password
+*/
+
+$ALERT_MSG['pw_not_match'] = 'A jelszó és a megerősítés nem egyezik!';
+$ALERT_MSG['multi_uid'] = 'Névütközés!';
+$ALERT_MSG['delete_uid_success'] = 'Az azonosító törlése sikeresen megtörtént.';
+
+?>