Demo

Probiere ClanSphere aus und teste daran herum. Demo


Antworten: 1
Seite [1]
TeQu!La ClanSphere Team


Specialist




Herkunft: Grevenbroich
Beiträge: 2142
# Thema - 25.02.2016 um 18:07 Uhr
Hallo liebe CSP Gemeinde,
ich würde gerne in dem History Modul die {history:history_time} ausgabe nur auf das Datum reduzieren.

Leider kenne ich mich zu schlecht aus und komme zu keiner Lösung meines Wunsches

Würde mich sehr über hilfe freuen, hier noch meine list.php & tpl

list.php +-
 
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
1. / 2. / ... 
<?php
// ClanSphere 2010 - www.clansphere.net
// $Id$

$cs_lang cs_translate('history');

$data = array();
$tables 'history hs INNER JOIN {pre}_users usr ON usr.users_id = hs.users_id';
$cells  'hs.history_time AS history_time, hs.history_text AS history_text, ';
$cells .= 'hs.users_id AS users_id, usr.users_nick AS users_nick, usr.users_active AS users_active';
$data['history'] = cs_sql_select(__FILE__,$tables,$cells,0,'hs.history_id DESC',0,0);
$history_loop count ($data['history']);

for(
$run 0$run $history_loop$run++) {
  
$data['history'][$run]['history_time'] = cs_date('unix',$data['history'][$run]['history_time'],1);
  
$data['history'][$run]['history_text'] = cs_secure($data['history'][$run]['history_text'],1,1,1,1);
  
$data['history'][$run]['user'] = cs_user($data['history'][$run]['users_id'],$data['history'][$run]['users_nick'],$data['history'][$run]['users_active']);
}
echo 
cs_subtemplate(__FILE__,$data,'history','list');


list.tpl +-
 
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
1. / 2. / ... 
 <table class="forum" cellpadding="0" cellspacing="{page:cellspacing}" style="width:{page:width}">
<
tr>
 <
td class="headb">{lang:mod_name}</td>
</
tr>
 <
tr>
<
td class="leftb">{lang:text_list}</td>
 </
tr>
</
table>

<
br />
{
loop:history}
<
table class="forum" cellpadding="0" cellspacing="{page:cellspacing}" style="width:{page:width}">
 <
tr>
<
td class="bottom">{history:history_time} - {history:user}</td>
</
tr>
 <
tr>
   <
td class="leftc">{history:history_text}</td>
 </
tr>
</
table>
<
br />
{
stop:history}


gruß teQ!


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

ClanSphere - professional clan care starts here


Zuletzt editiert von TeQu!La ClanSphere Team am 25.02.2016 um 18:07 Uhr (1x Editiert)
Inaktiv
Tom08 ClanSphere Team

Supporter
Supporter



Herkunft: Daheim
Beiträge: 2923
# Antwort: 1 - 25.02.2016 um 19:51 Uhr
Hey,

du musst einfach nur die Parameter von cs_date() anpassen.
http://csphere.eu/api/clansphere/_core---tools.html#functioncs_date

 
1.
1. / 2. / ... 
 $data['history'][$run]['history_time'] = cs_date('unix',$data['history'][$run]['history_time']);


Grüße


------------------
Bei Problemen mit Code von mir bitte eine Private Nachricht an mich


Inaktiv
|
Antworten: 1
Seite [1]


Sie müssen sich registrieren, um zu antworten.