Conditional data view

Conditional data view

Thursday 02 June 2005 2:23:42 am - 2 replies

Modified on Thursday 02 June 2005 2:56:44 am by Andrew Vorobyov

Author Message

Ɓukasz Serwatka

Thursday 02 June 2005 3:24:36 am

Hi Andrew,

You can use simple fetch

  {def $user=fetch( user, current_user )}
  
  {* if Anonymous show the name *}
  {if eq( $user.contentobject.id, 10 )}
      {$user.contentobject.name}
  {else}
      {$user.contentobject.data_map.nickname.data_text}
  {/if}

Should works if nickname is text line datatype. For < 3.6 you should use section insted of if and let insted of def

Personal website -> http://serwatka.net
Blog (about eZ Publish) -> http://serwatka.net/blog

Andrew Vorobyov

Thursday 02 June 2005 3:52:52 am

Thanks Lukasz..

but it means to share "content","read","Section(Memebers)" role for anonymous, right?

I don't want it!..

Because objects will be vurnerable for /content/view/full/plain/{node}
/content/view/full/full/{node}
/content/view/full/pdf/{node}

and who-knows-how-many variations to read object...

So my question now sounds like that:

<b>Any other options how to fetch fields from the objects with some kind special "admin_fetch('content'...)"

Only share section with "content","read" permission for anonymous group?
</b>

maybe any other ideas how to arrange sections?

You must be logged in to post messages in this topic!

Powered by eZ Publish™ CMS Open Source Web Content Management. Copyright © 1999-2014 eZ Systems AS (except where otherwise noted). All rights reserved.