![]() |
|
sfAlohaPlugin - 0.1.1A plugin to edit content using Aloha Editor |
|
This plugin makes it very easy to turn any HTML element within a template into an editable WYSIWYG field using Aloha Editor. Aloha plugins are included to save the content (and upload pictures in a near future). The plugin can therefore be used to turn a symfony application into a very basic CMS.
Go to your symfony project's root directory
Install the plugin (via a package)
./symfony plugin:install --stability=beta sfAlohaPlugin
Install the plugin (via Git):
git clone git@github.com:Justpassingby/sfAlohaPlugin.git plugins/sfAlohaPlugin
Activate the plugin in config/ProjectConfiguration.class.php
class ProjectConfiguration extends sfProjectConfiguration { public function setup() { $this->enablePlugins(array( 'sfDoctrinePlugin', 'sfAlohaPlugin', '...' )); } }
Rebuild the model
./symfony doctrine:build-model
./symfony doctrine:build-sql
Update database tables (Beware! All tables will be deleted and created again from scratch):
./symfony doctrine:insert-sql
Publish plugin assets
./symfony plugin:publish-assets
In a template, render the content
<?php use_helper('Aloha'); ?> <?php echo aloha_init_page(); ?> <?php echo aloha_render_element('My Content'); ?>
Execute ("My content" is an arbitrary name that will be used to easily identify content. It's like a title which won't be displayed)
./symfony aloha:create-content "My content"
In a template, render the content
<?php use_helper('Aloha'); ?> <?php echo aloha_init_page(); ?> <?php echo aloha_render_element('My Content'); ?>
Now you can test your page, hover the mouse cursor on the div element, edit it, and click the save button in the Aloha editor toolbar :)
The configuration is done in the plugin's config/app.yml file, in the aloha section
defaultPlugins: tells which Aloha plugins to load when calling the aloha_init_page helper function
autoAdd: tells whether new empty content should be automatically created when it doesn't exist yet