Topics

 Page Not Found

The page you were looking for wasn't found. It may have been moved or deleted.

Could this be what you are looking for?

We found the following pages which are similar to the page "snippet" you were looking for
Migrated YouTube Videos cover drop-down menus
Since there was no YouTube module in 0.9x, YouTube videos were likely embedded as a Code Snippet. If you create a new YouTube module, then copy the code snippet from the Code Snippet module, then create a new YouTube item and past the...
Handy Functions
- Some handy coding tricks for PHP  and Templates. eDebug - PHP & Templates - There is a php and smarty function which gives you quick access to display or dump variables, structures, objects, arrays, etc... when...
chain function (DEPRECATED)
Chaining was a way to combine the functionality of one module (or controller) with another. However, it has been replaced by the showmodule function.  When using the {chain} plugin within your views, you're actually hard-coding...
showmodule function
Showmodule is a way to combine the functionality of one module (or controller) with another. It replaces the {chain} function.  When using the {showmodule} plugin within your views, you're actually hard-coding your module in to...
Content Editor Settings
This setting selects and configures the What You See Is What You Get (WYSIWYG) and Code Snippet editor(s) used to edit content on the web site.  It also allows customization of the editor 'skin', buttons, and other options.  Currently,...
clear function
Another simple little plugin, this is very useful to ensure there is no overlap in content. Here's the code: This snippet: {clear} will write this to your document: <div style="clear: both;"/> Obviously if you are a...
textarea Control - texteditorcontrol Class
The textarea control places a multi-line text box in the form.  It uses the texteditorcontrol class in the forms/controls folder. The textare control accepts several parameters: name (required) id module rows cols label maxchars...
Block Functions (plugins)
Smarty 'Block' functions are functions which enclose a template block and operate on the contents of this block.  In Exponent, we use Block functions to encapsulate things like css code, the permissions section, forms, scripts,...
icon function
{icon} gives you quick access to display an icon and have it act as a button without having to write out the urls yourself.  Here's a snippet: {icon img='view.png'} The path to the icon "view.png" will be called, and the...
Smarty Snippets
{css} - If you need a way to throw some CSS in a view, exponent will use the "css" plugin to pull it out when that view is called upon and automatically put the css in the header (where it should be). {css} {literal} your css goes...