How to list only articles from logged in user?

Author Message

Arman Manutscheri

Monday 03 May 2004 9:45:26 am

Hi

How can I make a list of all articles created by the current user?
As I'm new to ez publish, i need a step-to-step answer ;-)
thanks

Nicolas Heiringhoff

Tuesday 04 May 2004 8:14:51 am

We have the same problem over here. Each article (or object of a class) has an "owner_id". So it would be very easy, if you could make an attribute_filter for the object on the owner_id. If you read the forum messages, this does not seem to be implied in ez publish yet. An other possibility is the sorting by author, because every article can be identified by its author. We do not have a proper solution for that yet. What we can do is this:

we have added a textfield to the article class, where you type in the username or author manualy (of course this should be done automatically, but we do not have a solution for this problem now). this textfield has the identifier "username" for example.

{let user=fetch( 'user', 'current_user' )}
   {$user.contentobject.name}
{/let}

gives you the current user

so you can sort the articles with this attribute filter on the "username"


{let user=fetch( 'user', 'current_user' )}
   
 {section loop=fetch( 'content', 'list', hash( parent_node_id, 47 , attribute_filter, array( array( 'article/username', '=', $user.contentobject.name ) ) ) ) }

 <a href={$:item.url_alias|ezurl}>{$:item.name}</a><br>

 {/section}

{/let}

This works here, but the main flaw is of course that you have to fill in the username manually. As we have the same problem and we are working on it, we will let you know, if we have come up with a more elegant solution!

http://www.heiringhoff.de

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

eZ debug

Timing: Jan 18 2025 22:37:39
Script start
Timing: Jan 18 2025 22:37:39
Module start 'layout'
Timing: Jan 18 2025 22:37:39
Module start 'content'
Timing: Jan 18 2025 22:37:40
Module end 'content'
Timing: Jan 18 2025 22:37:40
Script end

Main resources:

Total runtime0.7288 sec
Peak memory usage4,096.0000 KB
Database Queries54

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0073 588.0469152.6406
Module start 'layout' 0.00730.0026 740.687539.4766
Module start 'content' 0.00980.7170 780.1641524.3281
Module end 'content' 0.72690.0019 1,304.49228.1250
Script end 0.7288  1,312.6172 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.00340.4733160.0002
Check MTime0.00140.1930160.0001
Mysql Total
Database connection0.00180.247510.0018
Mysqli_queries0.680393.3448540.0126
Looping result0.00080.1032520.0000
Template Total0.697195.620.3485
Template load0.00210.293420.0011
Template processing0.694995.348520.3475
Template load and register function0.00020.029910.0002
states
state_id_array0.00070.098910.0007
state_identifier_array0.00120.161120.0006
Override
Cache load0.00180.2409160.0001
Sytem overhead
Fetch class attribute can translate value0.00130.181920.0007
Fetch class attribute name0.00100.140430.0003
XML
Image XML parsing0.00070.090820.0003
class_abstraction
Instantiating content class attribute0.00000.000930.0000
General
dbfile0.00090.1229160.0001
String conversion0.00000.001640.0000
Note: percentages do not add up to 100% because some accumulators overlap

Templates used to render the page:

UsageRequested templateTemplateTemplate loadedEditOverride
1node/view/full.tplfull/forum_topic.tplextension/sevenx/design/simple/override/templates/full/forum_topic.tplEdit templateOverride template
2content/datatype/view/ezxmltext.tpl<No override>extension/community_design/design/suncana/templates/content/datatype/view/ezxmltext.tplEdit templateOverride template
5content/datatype/view/ezxmltags/paragraph.tpl<No override>extension/ezwebin/design/ezwebin/templates/content/datatype/view/ezxmltags/paragraph.tplEdit templateOverride template
1content/datatype/view/ezxmltags/line.tpl<No override>design/standard/templates/content/datatype/view/ezxmltags/line.tplEdit templateOverride template
1content/datatype/view/ezimage.tpl<No override>extension/sevenx/design/simple/templates/content/datatype/view/ezimage.tplEdit templateOverride template
2content/datatype/view/ezxmltags/literal.tpl<No override>extension/community/design/standard/templates/content/datatype/view/ezxmltags/literal.tplEdit templateOverride template
1print_pagelayout.tpl<No override>extension/community/design/community/templates/print_pagelayout.tplEdit templateOverride template
 Number of times templates used: 13
 Number of unique templates used: 7

Time used to render debug report: 0.0001 secs