I'm working on a PyroCMS project, but having problems due to the lack of complete documentation. Does anyone know where I can find a list of core helpers, such as {pyro:navigation:links}
?
Asked
Active
Viewed 6,688 times
6

j0k
- 22,600
- 28
- 79
- 90

Adam Hopkinson
- 28,281
- 7
- 65
- 99
3 Answers
12
I only pushed those changes live yesterday, I am building the documentation for this as we speak!
Tags
{pyro:settings:site_name}
{pyro:settings:site_slogan} - or any other setting
{pyro:variables:foo}
Plugins
{pyro:navigation:links group="header"}
{pyro:session:data name="foo"}
{pyro:session:flash name="foo"}
{pyro:session:messages}
{pyro:session:messages success="success-box" notice="notice-box" error="error-box"}
{pyro:template:title}
{pyro:template:metadata}
{pyro:template:body}
{pyro:template:partial name="sidebar"}
{pyro:theme:path} - produces /path/to/addons/theme/xxx/
{pyro:theme:partial name="header"}
{pyro:theme:css file="style.css"}
{pyro:theme:js file="jquery.js"}
{pyro:theme:image file="logo.gif"}
{pyro:pages:url id="2"}
{pyro:url:current} - outputs http://example.com/the/current/url
{pyro:url:base} - outputs http://example.com/
{pyro:url:segments segment="2" default="something"}
{pyro:helper:lang line="foo"}
{pyro:helper:date format="d/m/Y"}
{pyro:pages:children id="2"}
{title}
{/pyro:pages:children}
{pyro:news:posts limit="5"}
<h2>{title}</h2>
{body}
{/pyro:news:posts}
{pyro:widgets:area slug="sidebar"}
{pyro:widgets:instance id="8"}
That's not a complete list as like I said, I am currently writing it!
It will be here when it's done: PyroCMS Tag Reference

Mat
- 202,337
- 40
- 393
- 406

Phil Sturgeon
- 30,637
- 12
- 78
- 117
0
The docs have moved.
http://docs.pyrocms.com/2.1/manual/index.php/modules-and-tags
Also, a lot of the tags have changed to, so the navigation links would be something like:
{{ navigation:links group="header" }}

Nick Pyett
- 3,338
- 1
- 23
- 27