Go to main content

Textpattern CMS support forum

You are not logged in. Register | Login | Help

#1 2013-03-26 14:04:47

sochicomputerRU
Member
From: Россия
Registered: 2013-01-18
Posts: 61
Website

How to make this work?

This piece of code is inside file_download_list tag

<txp:php> $mod_str = “<txp:file_download_modified format=”%Y-%m-%d” />”; </txp:php>

I’m getting error on line #1. I’m trying to get file download modified date as a string and put it into a php variable.

Offline

#2 2013-03-26 16:43:01

springworks
Member
Registered: 2005-01-06
Posts: 172
Website

Re: How to make this work?

I don’t think TXP tags work in PHP so you need to access the function that represents the tag directly (see inside the taghandlers.php file for all for all of these, which is in the publish folder in the textpattern folder). Try using this instead (untested):

<txp:php> $mod_str = 'file_download_modified(format=”%Y-%m-%d”)'; </txp:php>

Offline

#3 2013-03-26 18:42:59

GugUser
Member
From: Quito (Ecuador)
Registered: 2007-12-16
Posts: 1,477

Re: How to make this work?

I think it should be:

<txp:php> $mod_str = file_download_modified(array('format' => '%Y-%m-%d')); </txp:php>

Offline

#4 2013-03-26 19:02:29

springworks
Member
Registered: 2005-01-06
Posts: 172
Website

Re: How to make this work?

Yes, I think you’re right. I did say that mine was untested ;-)

Offline

#5 2013-03-27 18:43:41

sochicomputerRU
Member
From: Россия
Registered: 2013-01-18
Posts: 61
Website

Re: How to make this work?

I’ve decided against server side adding of NEW image to new files. And instead use javascript for in browser addition.

bc.. <script type=“text/javascript”> var mod_date = new Date(“<txp:file_download_modified format=’%Y/%m/%d’ />”); var today_date = new Date(); var age = today_date.valueOf() – mod_date.valueOf(); var one_day=1000*60*60*24; var dowrite = (Math.floor(age/one_day) <= 10) ? true:false;

if(dowrite) { document.write(“<img style=‘display:inline-block; position:relative; margin-left:5px’ title=‘Последний раз файл был модифицирован <txp:file_download_modified />, менее 10 дней назад.’ src=’/images/new.png’ />”) }

</script> p.

Offline

Board footer

Powered by FluxBB