What is getResources?
A general purpose Resource listing and summarization snippet.
Requirements
- MODx Revolution 2.0.0-beta5 or later
- PHP5 or later
History
getResources was first written by Jason Coward (opengeek) and released on June 30th, 2009.
Download
It can be downloaded from within the MODx Revolution manager via Package Management, or from the MODx Extras Repository, here: http://modxcms.com/extras/package/552
| It is NOT a replacement for Ditto, but rather an alternative component that can accomplish some of the things that the more specialized components do, i.e. Ditto, Wayfinder, Breadcrumbs; basically anything that output the properties for a list of Resources (formerly Documents in MODx Evolution). |
Usage
The getResources snippet can be called using the tag:
[[getResources]]
Calls without a &tpl property specify will just output an array listing of each resulting Resource and their fields.
Available Properties
Templating Properties
| Name | Description | Default Value | Added in version |
|---|---|---|---|
| tpl | Name of a chunk serving as a resource template. If not provided, properties are dumped to output for each resource | ||
| tplOdd | Name of a chunk serving as resource template for resources with an odd idx value (see idx property) | ||
| tplFirst | Name of a chunk serving as resource template for the first resource | ||
| tplLast | Name of a chunk serving as resource template for the last resource | ||
| tpl_N | Name of a chunk serving as resource template for the Nth resource, for example &tpl_4=`tpl4th` | ||
| tpl_nN | Name of a chunk serving as resource template for every Nth resource, for example &tpl_n4=`tpl4th` would apply to any item divisible by 4 | 1.4.1-pl | |
| tplPath | An optional directory to look for file-based chunks when using @FILE | assets_path + "elements/chunks/" | |
| outputSeparator | An optional string to separate each tpl instance | "\n" | |
| toPlaceholder |
If set, will assign the result to this placeholder instead of outputting it directly. |
||
| toSeparatePlaceholders |
If set, will assign EACH result to a separate placeholder named by this param suffixed with a sequential number (starting from 0). |
1.3.0 |
| @FILE and @INLINE tpls You can prefix any tpl property with @FILE or @INLINE to use a file-based chunk or inline markup respectively.
|
Selection Properties
| Name | Description | Default Value | Added in version | |||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| parents | Comma-delimited list of ids serving as parents. Use -1 to ignore parents when specifying resources to include. | current Resource id | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| resources |
Comma-delimited list of ids to include in the results. Prefix an id with a dash to exclude the resource from the result. |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||
| depth | Integer value indicating depth to search for resources from each parent | 10 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| tvFilters | Can be used to filter resources by certain TV values. These are entered as [(tvname)(operator)](value). There are two delimiters you can use to combine filter conditions. You can have "OR" filters using two pipe symbols. An OR filter fetches resources that has one of the listed TV values. mytv==somevalue||mytv==othervalue You can also use an "and" filter using a comma. This will make sure that all the conditions are met. mytv==somevalue,othertv==othervalue For advanced filtering you can also group these. It is important to know that conditions are first seperated based on the OR (||) delimiter, and after that on the AND (,) delimiter. So let's take this hypothetical example: mytv==foo||mytv==bar,bartv==3||bartv==1 This will filter resources to meet one of the following conditions:
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||
| sortby | Any Resource Field (excluding Template Variables) to sort by. Some common fields to sort on are publishedon, menuindex, pagetitle etc, but see the Resources documentation for all fields. Specify fields with the name only, not using the tag syntax. Note that when using fields like template, publishedby and the likes for sorting, it will be sorted on the raw values, so the template or user ID, and NOT their names. You can also sort randomly by specifying RAND(), like so: &sortby=`RAND()`
&sortby=`{"publishedon":"ASC","createdon":"DESC"}`
&sortby=`FIELD(modResource.id, 4,7,2,5,1 )` The same thing is possible if you put the sorted IDs in a template variable, like this: &sortby=`FIELD(modResource.id,[[*templateVariable]])`
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||
| publishedon | Modified in 1.3.0 |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||
| sortbyAlias | Query alias for sortby field | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| sortbyEscaped | Escapes the field name specified in sortby | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| sortdir | Order which to sort by | DESC | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| sortbyTV | Template Variable to sort by | 1.2.0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| sortdirTV | Order which to sort by when using sortbyTV | DESC | 1.2.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||
| sortbyTVType |
Specify the data type of the sortby TV. Possible values are string, integer, decimal, datetime | string | 1.3.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||
| limit | Limits the number of resources returned | 5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| offset | An offset of resources returned by the criteria to skip | 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| where | A JSON-style expression of criteria to build any additional where clauses from. See below for an example. See http://rtfm.modx.com/display/xPDO20/xPDOQuery.where | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| context | Which Context should be searched in. Defaults to the current Context. |
Other Properties
| Name | Description | Default Value | Added in version |
|---|---|---|---|
| showUnpublished | If true, will also show Resources if they are unpublished. | 0 | |
| showDeleted | If true, will also show Resources regardless if they are deleted. | 0 | |
| showHidden | If true, will show Resources regardless if they are hidden from the menus. | 0 | |
| hideContainers | If set, will not show any Resources marked as a container (is_folder). | 0 | |
| includeContent | Indicates if the content of each resource should be returned in the results | 0 | |
| includeTVs | Indicates if TemplateVar values should be included in the properties available to each resource template | 0 | |
| includeTVList | An optional comma-delimited list of TemplateVar names to include explicitly if includeTVs is 1 | 1.4.0 | |
| processTVs | Indicates if TemplateVar values should be rendered as they would on the resource being summarized. TemplateVars must be included (see includeTVs/includeTVList) to be processed. | 0 | |
| processTVList | An optional comma-delimited list of TemplateVar names to process explicitly. TemplateVars specified here must be included via includeTVs/includeTVList | 1.4.0 | |
| tvPrefix | The prefix for TemplateVar properties | tv. | |
| idx | You can define the starting idx of the resources, which is an property that is incremented as each resource is rendered | 1 | |
| first | Define the idx which represents the first resource | 1 | |
| last | Define the idx which represents the last resource. Default is # of resources being summarized + first - 1 | ||
| totalVar | Define the key of a placeholder set by getResources indicating the total number of Resources that would be selected not considering the limit value. | total | |
| debug | If true, will send the SQL query to the MODx log. |
false |
Examples
Also see the Examples sub section of this documentation for more detailed examples and tutorials.
Output a list of child Resources of the current Resource, using the 'myRowTpl' chunk:
[[!getResources? &parents=`[[*id]]` &tpl=`myRowTpl`]]
Output all resources beneath the Resource with ID '5', with the exception of resource 10, using the 'myRowTpl' chunk:
[[!getResources? &parents=`5` &resources=`-10` &tpl=`myRowTpl`]]
Output only the resources specified, using the 'myRowTpl' chunk:
[[!getResources? &parents=`-1` &resources=`10,11,12` &tpl=`myRowTpl`]]
Output the top 5 latest published Resources beneath the Resource with ID '5', with tpl 'blogPost':
[[!getResources? &parents=`5` &limit=`5` &tpl=`blogPost` &includeContent=`1`]]
Output a list of child Resources of the current Resource, based on the Resource-template:
[[!getResources? &parents=`[[*id]]` &where=`{"template:=":8}` &tpl=`myRowTpl`]]
Output a list of child Resources of the current Resource, where the Resource-template ID is 1 or 2:
[[!getResources? &parents=`[[*id]]` &where=`{"template:=":1, "OR:template:=":2}` &tpl=`myRowTpl`]]
Output a list of child Resources of the current Resource, where the Resource-template ID is 1, 2 or 3 (you cannot use the same key name more than once):
[[!getResources? &parents=`[[*id]]` &where=`{"template:IN":[1,2,3]}` &tpl=`myRowTpl`]]
Display a message when no results found (equivalent of "empty" parameter in Ditto):
[[!getResources:default=`No results found`? &parents=`[[*id]]` &tpl=`myRowTpl`]]
Displaying Template Variables with getResources
To reduce retrieval time, getResources does not get TV values by default. If you want to display TVs, you should include the following parameters:
&includeTVs=`1` &processTVs=`1`
You also need to either prefix all TVs with tv. or use this parameter in your snippet tag:
&tvPrefix=``
In the Tpl chunk you use to display the getResources output, use a placeholder tag like this (but with the name of your TV):
[[+tv.my_tv]]
Using getPage for Pagination
When combined with getPage, getResources allows you to do powerful and flexible pagination on your pages.
Examples
Grab first 10 Resources - sorted by publishedon - below the Resource ID 17, no more than 2 levels deep, with the tpl 'blogListPost', including the TVs and content:
[[!getPage? &elementClass=`modSnippet` &element=`getResources` &parents=`17` &depth=`2` &limit=`10` &pageVarKey=`page` &includeTVs=`1` &includeContent=`1` &tpl=`blogListPost` ]] <div class="paging"> <ul class="pageList"> [[!+page.nav]] </ul> </div>
and the chunk blogListPost:
<div class="blogPost"> <div class="date">[[+publishedon:strtotime:date=`%b %d %Y`]]</div> <h2><a href="[[~[[+id]]]]" title="[[+pagetitle]]">[[+pagetitle]]</a></h2> <p class="author"><strong>Author:</strong> <span class="author">[[+createdby:userinfo=`username`]]</span></p> <p class="summary">[[+introtext]]</p> <p class="readmore"><a href="[[~[[+id]]]]"><span>Read more</span></a></p> <div class="clear"></div> </div> <hr/>
Troubleshooting
Array of Attributes is Dumped
If you keep getting an array of attributes dumped as output even though you have correctly specified the &tpl parameter, you may have inadvertently forgotten the ampersand on one of your other parameters. E.g. limit=`5` will cause the Snippet call to fail and the attributes to be dumped. The correct format should be &limit=`5`
The same resource is output multiple times (1.2.2 and prior releases)
If you see the same resource listed multiple times, then try omitting the &sortbyTV parameter.
See Also
If you only need to get a single field from a foreign resource, try using getResourceField.