Demo

Probiere ClanSphere aus und teste daran herum. Demo


Antworten: 7
Seite [1]
8Master


Beginner




Beiträge: 4
# Thema - 29.11.2011 um 21:47 Uhr
hallo

ich habe mal eine frage kann man das Benutzer - Einstellungen menu anderes anordnen?

mfg
Inaktiv
ev0lution


Geekboy





Beiträge: 1102
# Antwort: 1 - 29.11.2011 um 22:06 Uhr
in wie fern ?


------------------


Inaktiv
|
8Master
Thread-Ersteller


Beginner




Beiträge: 4
# Antwort: 2 - 29.11.2011 um 22:13 Uhr
hi also wenn man auf einstellung klick kommt man ja in das menu und ich finde die anordnung ein bissel durch einander so zum beispiel das man die profil einstellung als erstes setzten kann und das deaktivieren zum beipiel als letztes in der reihenfolge hoffe du verstehst was ich meine


Inaktiv
|
Tress13


Highlander




Herkunft: Lüdenscheid
Beiträge: 3048
# Antwort: 3 - 29.11.2011 um 22:22 Uhr
Das wird ja jetzt nach Alphabet geordnet.


------------------


www.iv-gaming.de | www.iv-artwork.de

Inaktiv
|
ev0lution


Geekboy





Beiträge: 1102
# Antwort: 4 - 29.11.2011 um 22:25 Uhr
es gibt zu der users/setting.php leider keine theme datei.

wirst du also direkt hier bearbeiten müssen

mods/users/settings.php

wenn du dir die datei anschaust wirst du sehen das diese einige arrays beinhalten.
fraglich ob du durch neuordnung der arrays auch die anordnung auf der seite änderst. kannst ja mal testen


------------------


Inaktiv
|
8Master
Thread-Ersteller


Beginner




Beiträge: 4
# Antwort: 5 - 29.11.2011 um 22:25 Uhr
würde das gerne individuell gestalten wollen

edit: danke ich werds mal versuchen


Zuletzt editiert von 8Master am 29.11.2011 um 22:26 Uhr (1x Editiert)
Inaktiv
|
rL^z


Try to beat me




Herkunft: Niedersachsen
Beiträge: 117
# Antwort: 6 - 30.11.2011 um 10:56 Uhr
Zur Not kannst du den Kram anstatt aus einem Array auch manuell ausgeben lassen. Wäre zwar ein wenig mehr Aufwand, aber es würde seine Funktion erfüllen

Sonst post mal den Abschnitt aus der settings.php


------------------
Liebe Grüße rL^z

Inaktiv
|
8Master
Thread-Ersteller


Beginner




Beiträge: 4
# Antwort: 7 - 30.11.2011 um 15:49 Uhr
hier mal die php

 
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
51.
52.
53.
54.
55.
56.
1. / 2. / ... 
<?php
// ClanSphere 2010 - www.clansphere.net
// $Id$

$cs_lang cs_translate('users');

$head = array('mod' => $cs_lang['mod_name'], 'action' => $cs_lang['settings'], 'topline' => $cs_lang['settings_info'], 'message' => cs_getmsg());

$opt_array = array(
  
$cs_lang['profile'] => array(
    
'file' => 'profile',
    
'icon' => 'personal',
    
'name' => $cs_lang['profile'],
    
'show' => array('users/settings' => 1)
  ),
  
$cs_lang['picture'] => array(
    
'file' => 'picture',
    
'icon' => 'camera_unmount',
    
'name' => $cs_lang['picture'],
    
'show' => array('users/settings' => 1)
  ),
  
$cs_lang['password'] => array(
    
'file' => 'password',
    
'icon' => 'password',
    
'name' => $cs_lang['password'],
    
'show' => array('users/settings' => 1)
  ),
  
$cs_lang['setup'] => array(
    
'file' => 'setup',
    
'icon' => 'looknfeel',
    
'name' => $cs_lang['setup'],
    
'show' => array('users/settings' => 1)
  ),
  
$cs_lang['close'] => array(
    
'file' => 'close',
    
'icon' => 'gpg',
    
'name' => $cs_lang['close'],
    
'show' => array('users/settings' => 1)
  ),
  
$cs_lang['avatar'] => array(
    
'dir' => 'board',
    
'file' => 'avatar',
    
'icon' => 'babelfish',
    
'name' => $cs_lang['avatar'],
    
'show' => array('users/settings' => 1)
  ),
  
$cs_lang['signature'] => array(
    
'dir' => 'board',
    
'file' => 'signature',
    
'icon' => 'colors',
    
'name' => $cs_lang['signature'],
    
'show' => array('users/settings' => 1)
  ));

require_once(
'mods/clansphere/functions.php');
echo 
cs_manage('users''settings''users''center'$opt_array$head);


Inaktiv
|
Antworten: 7
Seite [1]


Sie müssen sich registrieren, um zu antworten.