thelia / diaporamas-module
Installs: 31
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 8
Forks: 3
Open Issues: 1
Type:thelia-module
Requires
- thelia/installer: ~1.1
- thelia/smarty-filter-module: ~1.3
README
Diaporamas module v0.1.6
Author: Romain Ducher
- Usage
This module enables you to insert diaporamas into descriptions. It currently works for products, categories, folders, contents and brands.
Diaporamas are identified with short codes. Diaporama shortcodes are strings containing letters (lowercase and uppercase), numbers, underscores and hyphens. A shortcode has to contain between 1 and 32 characters.
To insert a diaporama into a description, insert the "[£ shortcode £]
" tag, where shortcode
is your diaporama shortcode.
For example, writing "[£ foo £]" will insert in the description the diaporama whose shortcode is "foo". Do not forget
spaces around the shortcode or the diaporama tag will not be interpreted as a diaporama in your description.
To manage your diaporamas, log in into Thelia's back office and go to Tools
> Diaporamas
in Thelia's menu. There is
a list summing up existing diaporamas. For each diaporama, the ID in the database, the title and the shortcode are
displayed. In an upcoming release, you will be able to see the diaporama by clicking on its shortcode or by clicking on
the opened eye in diaporama actions.
If you want to create diaporamas, click on the '+
' sign in the top-right corener of the Diaporama list. Write its title
in the lang precised by the flag in the title field and then write its shortcode in the corresponding field. If the
shortcode has been already used by an existing diaporama, the diaporama creation will fail. It will create an empty
diaporama, without images.
To edit a diaporama, go to the diaporamas list and click on its database ID, its title or the edit button in the diaporama actions. Here you can manage your diaporama just like you want. There are two tabs for this:
- The first tab, called "
General
", enables you to change the shortcode or the title in the Thelia lang you want to. Save your changes by clicking on "Save" or "Save and Close" and go back to the diaporama list by clicking on "Close". - The second tab, called "
Images
", enables you to manages diaporama's images. You manage them just like images for products, categories, brands, folders or contents in Thelia.
To delete diaporamas, go to the diaporama list and click on the Trash Icon of the diaporama you want to delete.
The module uses the SmartyFilter module to change shortcodes into
diaporamas. For this, the Smarty filter whose code is diaporamas.filter.shortcodes
has to be activated. The filter
is activated automatically while activating the Diaporamas module.
- API
The module provides some entities for using Diaporamas in Thelia.
2.1. Loops
The module provides two loops.
2.1.1. Diaporama
It deals with diaporamas in general, with their general information.
Inputs:
Outputs:
2.1.2. DiaporamaImage
This loops deals with diaporama images. It almost works like Thelia's Image Loop, whose reference is
here. The difference is that you do not have to give a
source
argument. If you give it, it will be ignored. Do not provide category
, product
, folder
, content
or
brand
arguments too. You are dealing with diaporama images, not images for those sources. Those arguments will be
ignored if you give them too. To give a diaporama ID to the loop, write it in the source_id
argument.
2.2 Models
There are classes for diaporama and diaporama images.
Diaporamas are represented by the \Diaporamas\Model\Diaporama
class. They contain general information for diaporamas,
i.e. the database ID, the shortcode and the (i18n) title.
Diaporama images are represented by the \Diaporamas\Model\DiaporamaImage
class. They work just like classic Thelia
images whose source would be "diaporama".
2.3. Forms
There are forms to create, update and delete diaporamas and to update diaporama images. See the config.xml
file to have
information about them.
2.4. Services and events
2.5. Useful endpoints
- Installation
The Diaporamas module requires the SmartyFilter module. It is used to replace shortcodes with their corresponding HTML codes. Install it and activate it before activating the Diaporamas module.
Install it as a Thelia module by downloading the zip archive and extracting it in thelia/local/modules
or by uploading it with the backoffice (at /admin/modules
),
or by requiring it with Composer:
"require": { "thelia/diaporamas-module": "~0.1.6" }
Note: The module will create a thelia/local/media/images/diaporama
folder to store diaporama images.