Git Product home page Git Product logo

clingen's Introduction

PROCESSWIRE TEMPLATE FILES
==========================

The files in this directory correspond with the templates list in ProcessWire admin. Template files are just
PHP files that output markup. They may also be just basic HTML files (with a .PHP extension). Most pages in
the site are assigned to one of the template files in this directory. 

These template files typically comprise the majority of what makes your site unique from any other 
ProcessWire installation. In keeping with this approach, you'll also see '/scripts/' and '/styles/' 
directories within this templates directory. They contain the site's javascript and CSS files. Though 
that is stylistic only, you can certainly place them somewhere else or rename them as desired. 

Templates have full unrestricted access to the ProcessWire API and typically use it for finding pages and 
referencing their properties for output. If desired, templates may go further than this and call upon other 
web applications or anything else that you might do with PHP. 

Every template is supplied with a $page object that refers to the current page being viewed. This $page 
object is locally scoped to the template file. The only thing you need to do to access it is directly 
refer to it in your PHP code. For instance, if you wanted to output the page's $title field from your 
template, you would do the following:

  <?php echo $page->title; ?>

...or short syntax (if supported by your web host): 

  <?=$page->title?>

And likewise for any other fields assigned to the template. Though some fields require more, like 
files, images, page references and the like. 

For more details about the $page API variable, please see:
http://processwire.com/api/variables/page/


LOADING OTHER PAGES FROM YOUR TEMPLATE
======================================

Templates are also supplied with a $pages API variable that provides for loading and finding other pages. 
The most common methods used in that object are get() and find(), both of which take a selector string to 
locate and return pages. The only difference between them is that get() always returns 1 page, and find() 
returns a PageArray. Below are examples:

  // find all pages using the skyscraper template
  $skyscrapers = $pages->find("template=skyscraper"); 

  // find all skyscrapers with a height greater than 500 ft, and less than or equal to 1000 ft. 
  $skyscrapers = $pages->find("template=skyscraper, height>500, height<=1000"); 

  // find all skyscrapers in Chicago with 60+ floors, sorted by floors ascending
  $skyscrapers = $pages->get("/cities/chicago/")->children("floors>=60, sort=floors"); 

  // find all skyscrapers built before 1950 with 10+ floors, sorted by year, then floors
  $skyscrapers = $pages->find("template=skyscraper, year<1950, floors>=10, sort=-year, sort=-floors"); 

  // find all skyscrapers by architects David Childs or Renzo Piano, and sort by height descending
  $david = $pages->get("/architects/david-childs/"); 
  $renzo = $pages->get("/architects/renzo-piano/"); 
  $skyscrapers = $pages->find("architect=$david|$renzo, sort=-height"); 

  // find all skyscrapers that mention the words "limestone" and "granite" somewhere in their body copy. 
  $skyscrapers = $pages->get("/cities/")->find("template=skyscraper, body~=limestone granite"); 

  // find all skyscrapers that mention the phrase "empire state building" in their body copy. 
  $skyscrapers = $pages->find("template=skyscraper, body*=empire state building"); 

For more about the $pages API variable, please see:
http://processwire.com/api/variables/pages/


INCLUDING A TEMPLATE FROM ANOTHER TEMPLATE
==========================================

When you include a template from another template, use the following syntax:

  include("./my-template.php"); 

Note the leading "./" above. Do NOT use this syntax:

  include("my-template.php"); 

The difference between the second [incorrect] example and the first [correct] example is that the first 
example starts with: "./". This tells PHP to look in the current directory. Whereas if you omit that part,
PHP will search your include path, which could result in an error, or even worse, include the wrong file.
So just remember to always precede your included files with "./". 


MORE INFORMATION
================

The information in this file is very brief. Please see the official documentation at: 
http://processwire.com/api/

The ProcessWire API cheatsheet is especially handy: 
http://processwire.com/api/cheatsheet/

Please join the ProcessWire forum and we're always glad to assist with any questions you have:
http://processwire.com/talk/ 

clingen's People

Contributors

forresttanaka avatar sgoehringer avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Forkers

sgoehringer

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.