Welcome,
Guest
.
Please
login
or
register
.
Did you miss your
activation email
?
News:
IOS Hotels
and
IOS Rentals
online booking systems for Elxis CMS.
Home
Help
Login
Register
Elxis CMS Forum
»
Extensions
»
Modules
»
Mod_Latestnews plus icon-thumb date and time
« previous
next »
Print
Pages: [
1
]
Author
Topic: Mod_Latestnews plus icon-thumb date and time (Read 7100 times)
martiras
Newbie
Posts: 33
Mod_Latestnews plus icon-thumb date and time
«
on:
October 01, 2009, 13:49:18 »
Is there any chance to put in mod_latestnews.php the source code for icon date and time(posted) near the links?
example .... Latest news: 'icon' 30/09, 17:06 'link title'
'icon' 23/10, 14:03 'link title'
thanks
Logged
datahell
Elxis Team
Hero Member
Posts: 10356
Re: Mod_Latestnews plus icon-thumb date and time
«
Reply #1 on:
October 01, 2009, 21:24:15 »
What icon?
For the
date
, I guess you mean the article's created date.
Open modules/mod_latestnews.php
On the 3 SELECT statements you must add column "
created
" in the query in order to get this information from the database.
For case 2
from:
$query = "SELECT a.id, a.title, a.seotitle FROM #__content a"
change to:
$query = "SELECT a.id, a.title, a.created, a.seotitle FROM #__content a"
For case 3
from:
$query = "SELECT a.id, a.title, a.seotitle, a.sectionid, cc.seotitle AS seocat, cc.access AS catacc,"
change to:
$query = "SELECT a.id, a.title, a.created, a.seotitle, a.sectionid, cc.seotitle AS seocat, cc.access AS catacc,"
For case 1
from:
$query = "SELECT a.id, a.title, a.seotitle, a.sectionid, a.catid, cc.seotitle AS seocat, s.seotitle AS seosec"
change to:
$query = "SELECT a.id, a.title, a.created, a.seotitle, a.sectionid, a.catid, cc.seotitle AS seocat, s.seotitle AS seosec"
Now go down on line 158(*) where the links are displayed. Add before the link ( <a href=... ):
<?php echo mosFormatDate($row->created, "%d %b %Y %H:%M"); ?>
* Note: The line number may vary depending on your Elxis version.
«
Last Edit: October 01, 2009, 21:30:25 by datahell
»
Logged
Elxis Team
|
Is Open Source
|
IOS Rentals | IOS AERO
martiras
Newbie
Posts: 33
Re: Mod_Latestnews plus icon-thumb date and time
«
Reply #2 on:
October 02, 2009, 15:24:04 »
thanks is working fine
but how can i change the month format .... example: from aug to 08
Logged
Ivan Trebješanin
Elxis Team
Hero Member
Posts: 1663
Re: Mod_Latestnews plus icon-thumb date and time
«
Reply #3 on:
October 02, 2009, 16:13:41 »
Read this please:
http://www.php.net/manual/en/function.date.php
Logged
I've got a snap in my finger...
Got rhythm in my walk...
martiras
Newbie
Posts: 33
Re: Mod_Latestnews plus icon-thumb date and time
«
Reply #4 on:
October 02, 2009, 18:05:03 »
thank you
Logged
Print
Pages: [
1
]
« previous
next »
Elxis CMS Forum
»
Extensions
»
Modules
»
Mod_Latestnews plus icon-thumb date and time