Demo

Probiere ClanSphere aus und teste daran herum. Demo


Antworten: 2
Seite [1]
Hollow_Man


Beginner




Beiträge: 12
# Thema - 18.07.2012 um 18:17 Uhr
Hallo

ich würde gerne bei mod=users&action=list die spalte "Letzter Besuch" ändern in "Registiert seit"
und ich meine NICHT die Überschrift sondern die "Werte"

brauche dort dringend hilfe

danke im vorraus
Inaktiv
gent0s


Try to beat me




Beiträge: 138
# Antwort: 1 - 18.07.2012 um 19:21 Uhr
list.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.
57.
58.
59.
60.
61.
62.
63.
1. / 2. / ... 
<?php
// ClanSphere 2010 - www.clansphere.net
// $Id$

$cs_lang cs_translate('users');

$start = empty($_GET['start']) ? : (int) $_GET['start'];
$cs_sort[1] = 'users_nick DESC';
$cs_sort[2] = 'users_nick ASC';
$cs_sort[3] = 'users_place DESC';
$cs_sort[4] = 'users_place ASC';
$cs_sort[5] = 'users_laston DESC';
$cs_sort[6] = 'users_laston ASC';
$cs_sort[7] = 'users_register DESC';
$cs_sort[8] = 'users_register ASC';
$sort = empty($_GET['sort']) ? : (int) $_GET['sort'];
$order $cs_sort[$sort];
//$where = empty($_REQUEST['where']) ? 0 : $_REQUEST['where'];
//$mof = empty($where) ? '' : " AND users_sex = '" . cs_sql_escape($where) . "'";
$where = empty($_GET['where']) ? $_GET['where'];
$mof = empty($where) ? '' " AND users_nick LIKE '" cs_sql_escape($where) . "%'";
$condition 'users_delete = 0 AND users_active = 1' $mof;
$users_count cs_sql_count(__FILE__,'users',$condition);

$data['head']['mod'] = $cs_lang['mod_name'];
$data['head']['action'] = $cs_lang['list'];

$data['head']['total'] = $users_count;
$data['head']['pages'] = cs_pages('users','list',$users_count,$start,$where,$sort);
$sel_female $where === 'female' 'selected' '';
$data['head']['sel_female'] = $sel_female;
$sel_male $where === 'male' 'selected' '';
$data['head']['sel_male'] = $sel_male;

$data['sort']['nick'] = cs_sort('users','list',$start,$where,1,$sort);
$data['sort']['place'] = cs_sort('users','list',$start,$where,3,$sort);
$data['sort']['laston'] = cs_sort('users','list',$start,$where,5,$sort);
$data['sort']['register'] = cs_sort('users','list',$start,$where,7,$sort);

$select 'users_id, users_nick, users_place, users_laston, users_register, users_country, users_hidden, users_active, users_invisible';
$cs_users cs_sql_select(__FILE__,'users',$select,$condition,$order,$start,$account['users_limit']);
$users_loop count($cs_users);

for(
$run=0$run<$users_loop$run++) {

  
$cs_users[$run]['country'] = cs_html_img('symbols/countries/' $cs_users[$run]['users_country'] . '.png');
  
$cs_users[$run]['users_id'] = cs_secure($cs_users[$run]['users_id']);
  
$cs_users[$run]['nick'] = cs_user($cs_users[$run]['users_id'], $cs_users[$run]['users_nick'], $cs_users[$run]['users_active']);
  
$content cs_secure($cs_users[$run]['users_place']);
  
$hidden explode(',',$cs_users[$run]['users_hidden']);
  if(
in_array('users_place',$hidden)) {
    
$content = ($account['access_users'] > OR $cs_users[$run]['users_id'] == $account['users_id']) ?
      
cs_html_italic(1) . $content cs_html_italic(0) : '';
  }
  
$cs_users[$run]['place'] = $content;
  
$cs_users[$run]['laston'] = cs_date('unix',$cs_users[$run]['users_laston']);
  
$cs_users[$run]['register'] = cs_date('unix',$cs_users[$run]['users_register']);
  
$cs_users[$run]['page'] = cs_userstatus($cs_users[$run]['users_laston'],$cs_users[$run]['users_invisible']);

}

$data['users'] = $cs_users;
echo 
cs_subtemplate(__FILE__,$data,'users','list');


list.tpl
 
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.
57.
58.
59.
60.
1. / 2. / ... 
 <table class="forum" cellpadding="0" cellspacing="{page:cellspacing}" style="width:{page:width}">
  <
tr>
    <
td class="headb" colspan="2"> {head:mod}  -  {head:action} </td>
  </
tr>
  <
tr>
    <
td class="leftb"> {lang:total}: {head:total}</td>
    <
td class="rightb"> {head:pages} </td>
  </
tr>
  <
tr>
    <
td class="centerb" colspan="2"
      <
a href="{url:users_list:where=a}">A</a> - 
      <
a href="{url:users_list:where=b}">B</a> - 
      <
a href="{url:users_list:where=c}">C</a> - 
      <
a href="{url:users_list:where=d}">D</a> - 
      <
a href="{url:users_list:where=e}">E</a> - 
      <
a href="{url:users_list:where=f}">F</a> - 
      <
a href="{url:users_list:where=g}">G</a> - 
      <
a href="{url:users_list:where=h}">H</a> - 
      <
a href="{url:users_list:where=i}">I</a> - 
      <
a href="{url:users_list:where=j}">J</a> - 
      <
a href="{url:users_list:where=k}">K</a> - 
      <
a href="{url:users_list:where=l}">L</a> - 
      <
a href="{url:users_list:where=m}">M</a> - 
      <
a href="{url:users_list:where=n}">N</a> - 
      <
a href="{url:users_list:where=o}">O</a> - 
      <
a href="{url:users_list:where=p}">P</a> - 
      <
a href="{url:users_list:where=q}">Q</a> - 
      <
a href="{url:users_list:where=r}">R</a> - 
      <
a href="{url:users_list:where=s}">S</a> - 
      <
a href="{url:users_list:where=t}">T</a> - 
      <
a href="{url:users_list:where=u}">U</a> - 
      <
a href="{url:users_list:where=v}">V</a> - 
      <
a href="{url:users_list:where=w}">W</a> - 
      <
a href="{url:users_list:where=x}">X</a> - 
      <
a href="{url:users_list:where=y}">Y</a> - 
      <
a href="{url:users_list:where=z}">Z</a> - 
      <
a href="{url:users_list}">{lang:all}</a>
    </
td>
  </
tr>
</
table><br />
<
table class="forum" cellpadding="0" cellspacing="{page:cellspacing}" style="width:{page:width}">
  <
tr>
    <
td class="headb" style="width:40px"> {lang:country}</td>
    <
td class="headb">{sort:nick} {lang:nick}</td>
    <
td class="headb">{sort:place} {lang:place}</td>
    <
td class="headb">{sort:laston} {lang:laston}</td>
    <
td class="headb">{sort:register} {lang:since}</td>
    <
td class="headb" style="width:40px"> {lang:status} </td>
  </
tr>
  {
loop:users}
  <
tr>
    <
td class="leftc">{users:country}</td>
    <
td class="leftc">{users:nick}</td>
    <
td class="leftc"> {users:place}</td>
    <
td class="leftc"> {users:laston}</td>
    <
td class="leftc"> {users:register}</td>
    <
td class="centerc"> {users:page} </td>
  </
tr>
  {
stop:users}
</
table>


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


Zuletzt editiert von gent0s am 18.07.2012 um 19:23 Uhr (1x Editiert)
Inaktiv
|
Hollow_Man
Thread-Ersteller


Beginner




Beiträge: 12
# Antwort: 2 - 18.07.2012 um 19:48 Uhr
Vieln dank für die schnelle und gute arbeit.


Inaktiv
|
Antworten: 2
Seite [1]


Sie müssen sich registrieren, um zu antworten.