Demo

Probiere ClanSphere aus und teste daran herum. Demo


Antworten: 45
Seite < 1 2 [3]
Fr33z3m4n ClanSphere Team


Medal of Honor




Herkunft: Hamm
Beiträge: 11094
# Antwort: 41 - 14.07.2008 um 10:30 Uhr
/mods/users/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.
64.
65.
66.
67.
68.
69.
70.
71.
72.
73.
74.
75.
76.
77.
78.
79.
80.
81.
82.
83.
84.
85.
86.
87.
88.
89.
90.
91.
92.
93.
94.
95.
96.
97.
98.
99.
100.
101.
102.
103.
1. / 2. / ... 
<?php
// ClanSphere 2008 - www.clansphere.net
// $Id: list.php 185 2006-08-09 21:26:11Z hajo $

$cs_lang cs_translate('users');

$start = empty($_REQUEST['start']) ? $_REQUEST['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';
empty(
$_REQUEST['sort']) ? $sort $sort $_REQUEST['sort'];
$order $cs_sort[$sort];
//$where = empty($_REQUEST['where']) ? 0 : $_REQUEST['where'];
//$mof = empty($where) ? '' : " AND users_sex = '" . cs_sql_escape($where) . "'";     
$where = empty($_REQUEST['where']) ? $_REQUEST['where'];
$mof = empty($where) ? '' " AND users_nick LIKE '" cs_sql_escape($where) . "%'";
$condition '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['lang']['total'] = $cs_lang['total'];
    
$data['lang']['sex'] = $cs_lang['sex'];
    
$data['lang']['female'] = $cs_lang['female'];
    
$data['lang']['male'] = $cs_lang['male'];
    
$data['lang']['show'] = $cs_lang['show'];
    
$data['lang']['country'] = $cs_lang['country'];
    
$data['lang']['nick'] = $cs_lang['nick'];
    
$data['lang']['place'] = $cs_lang['place'];
    
$data['lang']['laston'] = $cs_lang['laston'];
    
$data['lang']['page'] = $cs_lang['page'];
    
$data['lang']['all'] = $cs_lang['all'];
    
    
$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);


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

//
$run_b 0;
for(
$run=0$run<$users_loop$run++) {
//neu bebilderung

$cs_users[$run]['picture'] = cs_html_img('uploads/users/' $cs_users[$run]['users_picture'] . '');

if(empty(
$cs_users[$run]['users_picture'])) {
          
$cs_users[$run]['picture'] = $cs_lang['nopic'];
        }
        else {
          
$place 'uploads/users/' $cs_users[$run]['users_picture'];
          
$size getimagesize($cs_main['def_path'] . '/' $place);
          
$cs_users[$run]['picture'] = cs_html_img($place,$size[1],$size[0]);
        }
//ende neu
    
$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']);
    
$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']);
    
$on_now cs_time() - 300
    
$on_week cs_time() - 604800;
    
$on_now <= $cs_users[$run]['users_laston'] ? $icon 'green' $icon 'red';
    if(
$on_week>=$cs_users[$run]['users_laston']) {
    
$icon 'grey';
    }
    
$cs_users[$run]['page'] = cs_html_img('symbols/clansphere/' $icon '.gif');
    if(
$run_b == 3) {
      
$cs_users[$run]['if']['tr'] = true;
      
$run_b 0;
    } else {
      
$cs_users[$run]['if']['tr'] = false;
      
$run_b++;
    }
    
    
}

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


/themes/<->/users/list.tpl
<table style="width:{page:width}">
<tr>
<td>
<table align="left">
<tr>
<td align="left" width="100"><b>{head:mod} - {head:action}</b></td>
<td align="left" width="80"><b>{lang:total}: {head:total}</b></td>
<td align="left" width="60"><b>{head:pages}</b></td>
</tr>
</table>
</td>
</tr>
</table>
<br />
<table style="width:{page:width}">
<tr>
{loop:users}
<td>
<table style="width:{page:width}">
<tr>
<td>{users:picture}</td>
</tr>
<tr>
<td>{icon:personal} {users:nick}</td>
</tr>
</table>
</td>
{if:tr}
</tr>
<tr>
{stop:tr}
{stop:users}
</tr>
</table>


------------------
mfg
Patrick "Fr33z3m4n" Jaskulski

Antoine de Saint-Exupéry: Wenn Du ein Schiff bauen willst, so trommle nicht Männer zusammen, um Holz zu beschaffen, Aufgaben zu verteilen, sondern lehre die Männer die Sehnsucht nach dem endlosen weiten Meer.

Inaktiv
|
aschti
Thread-Ersteller


Poststar





Beiträge: 778
# Antwort: 42 - 14.07.2008 um 11:44 Uhr
ahhhhhhhhhhhh geil !!!!!!!!!!!!!!!!

endlich i love you !!! and i love Clansphere !!!

es funktioniert nach 3wochen endlich, ist besser als weihnachten !!!

THX - Fr33z3m4n


------------------
p.s. die oben zufindenen Rechtschreibfehler sind eine gratis beigabe ^^

www.DemolitionGroup.de
It's Time to Fight - Play Hard & Fair !


Inaktiv
|
Pred


Poststar




Herkunft: Bischofsmais
Beiträge: 762
# Antwort: 43 - 14.07.2008 um 12:00 Uhr
der frezze hats wieder gerichetet

Und ih war schon so na dran mit meiner lösung... grml ^^


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


Inaktiv
|
aschti
Thread-Ersteller


Poststar





Beiträge: 778
# Antwort: 44 - 14.07.2008 um 12:01 Uhr
aber auch ein dank an dich Pred
ist echt n netter hilfsberreiter haufen hier ^^ - i love it ^^


------------------
p.s. die oben zufindenen Rechtschreibfehler sind eine gratis beigabe ^^

www.DemolitionGroup.de
It's Time to Fight - Play Hard & Fair !


Inaktiv
|
aschti
Thread-Ersteller


Poststar





Beiträge: 778
# Antwort: 45 - 20.08.2008 um 22:53 Uhr
könnt closetten ^^


------------------
p.s. die oben zufindenen Rechtschreibfehler sind eine gratis beigabe ^^

www.DemolitionGroup.de
It's Time to Fight - Play Hard & Fair !


Inaktiv
|

Dieses Thema wurde von fay-pain PM geschlossen.

Antworten: 45
Seite < 1 2 [3]