The following is a list of client-side helpers for app developers that are included in
the Elefant CMS. Most of these are written as jQuery plugins and are loaded by including
a helper in your view template (e.g., {! admin/util/modal !}
).
For more info on including helpers, see server-side helpers.
Adds a notification for the current admin user (jGrowl). This is the
client-side equivalent of calling $this->add_notification()
in any
handler.
<script>
$(function () {
$.add_notification ('The sky is falling!');
});
</script>
Available on any admin screen. Source is found in apps/admin/js/top-bar.js
.
Adds a confirmation to a link and turns its data-* properties into a POST request.
<a href="/myapp/delete"
data-id="{{id}}"
donclick="return $.confirm_and_post (this, '{'Are you sure?'}')"
>{"Delete"}</a>
Available on any admin screen. Source is found in apps/admin/js/top-bar.js
.
Turns a section of a form into an expandable/collapsible section.
<h4 id="extras-header">{"Extra options"}</h4>
<div id="extras-section">
<!-- Extra content here -->
</div>
<script>
$(function () {
$.expanded_section ({
handle: '#extras-header',
section: '#extras-section',
visible: false
});
});
</script>
Available on any admin screen. Source is found in apps/admin/js/top-bar.js
.
Translates the specified text into the current user's language,
if available. This is the JavaScript equivalent of calling
__(text)
in any handler, and is useful when you need to include
translatable text in a .js file.
<script>
$(function () {
// This will make the text available to $.i18n()
$.i18n_append ({
'Some text': '{"Some text"}',
'Another string': '{"Another string"}'
});
// Now fetch a translated string
console.log ($.i18n ('Some text'));
});
</script>
Available on any admin screen. Source is found in apps/admin/js/top-bar.js
.
Opens a modal dialog (jQuery SimpleModal) with the specified title, html, and SimpleModal options.
{! admin/util/modal !}
<script>
$(function () {
$.open_dialog ('Title', 'HTML goes here');
});
</script>
Available by including the admin/util/modal
handler.
Closes the modal dialog opened by $.open_dialog ()
.
{! admin/util/modal !}
<script>
$(function () {
$.close_dialog ();
});
</script>
Available by including the admin/util/modal
handler.
Converts date values to show in the current user's timezone. Uses the jQuery localize plugin. Filters include:
I18n::date
I18n::date_time
I18n::short_date
I18n::short_date_time
I18n::time
{! admin/util/dates !}
{{ date_value|I18n::date_time }}
Available by including the admin/util/dates
handler.
Provides a modal dialog to browse for files. Options include:
allowed
: An array of allowed file extensions.callback
: A function that will be called with the chosen file link.multiple
: Whether to allow multiple files to be selected.path
: The path within /files/
to default the dialog window to.set_value
: The selector of an input field to update with the chosen file link.thumbs
: Whether to show thumbnails instead of file names. Note: Also automatically sets allowed list to jpeg, png, and gif formats so you don't have to set allowed explicitly.title
: A custom title for the dialog window.{! filemanager/util/browser !}
<input type="text" id="file" size="30" />
<input type="submit" id="browse" value="{"Browse"}" />
<script>
$(function () {
$('#browse').click (function () {
$.filebrowser ({
title: '{"Choose an image"}',
set_value: '#file',
thumbs: true
});
});
});
</script>
Available by including the filemanager/util/browser
handler.
Provides a multi-file selector based on the file browser from filemanager/util/browser
.
Options include:
field
: The selector of an input field to update with the list.preview
: The selector of an element to use to contain the list preview.{! filemanager/util/multi-file !}
<p>
{"Attach files"}:
<div id="preview"></div>
<input type="hidden" name="files" id="files" />
</p>
<script>
$(function () {
$.multi_file ({
field: '#files',
preview: '#preview'
});
});
</script>
This helper stores the list of files as a string delimited by |
characters, for example:
/files/file1.txt|/files/file2.doc|/files/file3.txt
Available by including the filemanager/util/multi-file
handler.
Provides a multi-image selector based on the file browser from filemanager/util/browser
.
Options include:
field
: The selector of an input field to update with the list.preview
: The selector of an element to use to contain the list preview.{! filemanager/util/multi-image !}
<p>
{"Attach images"}:
<div id="preview"></div>
<input type="hidden" name="images" id="images" />
</p>
<script>
$(function () {
$.multi_image ({
field: '#images',
preview: '#preview'
});
});
</script>
This helper stores the list of images as a string delimited by |
characters, for example:
/files/file1.jpg|/files/file2.jpg|/files/file3.png
Available by including the filemanager/util/multi-image
handler.
Provides a modal dialog to browse for users. Options include:
callback
: A function that will be called with the chosen user id, name, and email.chosen
: A list of users that shouldn't be selectable.chosen_visible
: Whether to display the disabled chosen users or hide them.set_id_value
: The selector of an input or element to update with the user id.set_name_value
: The selector of an input or element to update with the user name.set_email_value
: The selector of an input or element to update with the user email.set_mailto
: The selector of a link to set the mailto: value for.{! user/util/userchooser !}
<input type="text" id="user-id" size="30" /><br />
<a href="#" id="user-link">email</a><br />
<input type="submit" id="browse" value="{"Browse"}" />
<script>
$(function () {
$('#browse').click (function () {
$.userchooser ({
set_id_value: '#user-id',
set_name_value: '#user-link',
set_mailto: ' #user-link',
callback: function (id, name, email) {
console.log (id);
console.log (name);
console.log (email);
}
});
});
});
</script>
Available by including the user/util/userchooser
handler.
Elefant provides a helper for including the Font Awesome icon set.
{! admin/util/fontawesome !}
<p><i class="fa fa-cogs"></i> {"Settings"}</p>
Available by including the admin/util/fontawesome
handler.
Elefant provides a helper for including the Redactor wysiwyg editor.
{! admin/util/redactor !}
<textarea id="edit-me"></textarea>
<script>
$(function () {
$('#edit-me').redactor ({
// redactor options
});
});
</script>
Available by including the admin/util/redactor
handler.
In addition to the Redactor helper, Elefant includes a second helper to include the Redactor wysiwyg editor with all of the Elefant integration options enabled.
These include file and thumbnail browsers, internal link selection, autosave support, and the Dynamic Objects embed menu.
This helper will automatically initialize itself on the specified element. If no field_id
is provided, it will assume webpage-body
.
{! admin/util/wysiwyg?field_id=webpage-body !}
<textarea id="webpage-body"></textarea>
Or you can include it and initialize it manually by setting the field_id
to 0:
{! admin/util/wysiwyg?field_id=0 !}
<textarea id="edit-me"></textarea>
<script>
$(function () {
$('#edit-me').wysiwyg ();
});
</script>
Available by including the admin/util/wysiwyg
handler.
Elefant provides a very straight-forward way of including custom fields in forms that act on ExtendedModel-based classes.
Add this to your form view template:
{! admin/util/extended?extends=myappModelName !}
For update forms, pass the extended field values as well:
{! admin/util/extended?extends=myappModelName&values=[extra|none] !}
$model->put ()
:$model->update_extended ();
<a href="/admin/extended?extends=myappModelName&name=My+Model">{"Custom Fields"}</a>
Available by including the admin/util/extended
handler. See
usage section for more details.