Releases for sf 1.4
| Version |
License |
API |
Released |
|
0.1.7beta
|
MIT |
0.1.0beta
|
04/09/2010 |
|
0.1.6beta
|
MIT |
0.1.0beta
|
24/02/2010 |
|
0.1.5beta
|
MIT |
0.1.0beta
|
23/02/2010 |
|
0.1.4beta
|
MIT |
0.1.0beta
|
21/02/2010 |
|
0.1.3beta
|
MIT |
0.1.0beta
|
07/02/2010 |
|
0.1.2beta
|
MIT |
0.1.0beta
|
24/01/2010 |
|
0.1.1beta
|
MIT |
0.1.0beta
|
24/01/2010 |
|
0.1.0beta
|
MIT |
0.1.0beta
|
22/01/2010 |
Releases for sf 1.3
| Version |
License |
API |
Released |
|
0.1.7beta
|
MIT |
0.1.0beta
|
04/09/2010 |
|
0.1.6beta
|
MIT |
0.1.0beta
|
24/02/2010 |
|
0.1.5beta
|
MIT |
0.1.0beta
|
23/02/2010 |
|
0.1.4beta
|
MIT |
0.1.0beta
|
21/02/2010 |
|
0.1.3beta
|
MIT |
0.1.0beta
|
07/02/2010 |
|
0.1.2beta
|
MIT |
0.1.0beta
|
24/01/2010 |
|
0.1.1beta
|
MIT |
0.1.0beta
|
24/01/2010 |
|
0.1.0beta
|
MIT |
0.1.0beta
|
22/01/2010 |
| Name |
Channel |
Version |
| tdCorePlugin |
plugins.symfony-project.org |
0.1.10- |
Changelog for release 0.1.7 - 04/09/2010
- added backend module AJAX activate/deactivate interface
Other releases
Release 0.1.7 - 04/09/2010
- added backend module AJAX activate/deactivate interface
Release 0.1.6 - 24/02/2010
- short description sign count moved to core
- added mp3 play widget inside admin generator edit panel
- deletion of the whole album involves deleting particular tracks with their files
- validation updated
Release 0.1.5 - 23/02/2010
- forward404 if no audio added
- layout change
Release 0.1.4 - 21/02/2010
- removed web/images directory containing sample album cover files
- audio list/play templates use background image
- model updated to handle embedded relation form
Release 0.1.3 - 07/02/2010
- NOT RELEASED YET
- updated random audio albums - fixed blocked website bug
- added album cover upload directory
- track forms embedded in album form
- fixed album cover upload directory (with setup)
Release 0.1.2 - 24/01/2010
- reorganized sample mp3 files directory and upload directory
Release 0.1.1 - 24/01/2010
- fixed short description method
- track album admin updated
- documentation updated
Release 0.1.0 - 22/01/2010
tdAudioPlugin
Provides easy interface for flash mp3 player to embed in symfony projects.
This plugin is a part of TD CMS and is based on Doctrine ORM.
Installation
Install the plugin via the subversion repository by executing the following
command from the project root directory:
$ svn co http://svn.symfony-project.com/plugins/tdAudioPlugin/trunk plugins/tdAudioPlugin
or by using the default symfony plugin install command:
$ ./symfony plugin:install -s beta tdAudioPlugin
as the actual release is in its beta stage. Run
$ ./symfony plugin:publish-assets
to enable all needed media files (which in this case are more or less
everything).
Usage
Enable the track_td_album module in your backend app and enable the
tdSampleAudio module in your frontend (or make a copy of it to modify,
if the plugin was installed using SVN).
Fixtures are provided with the plugin - more than 10 small mp3 files (thanks
to simplythebest.net site). Run following
commands:
$ ./symfony doctrine:build --all
and
$ ./symfony doctrine:data-load
Now you have to create upload directories for audio and cover files:
$ mkdir web/uploads/td/audio web/uploads/td/cover
and make it writeable:
$ chmod 777 web/uploads/td/audio web/uploads/td/cover
Now you have to copy the mp3 sample files from tdAudioPlugin/data/samples
to the audio upload directory created above. Everything is ready to run the
following URL in your browser:
http://your-project/audio
to see a demo of the mp3 flash player. It should look something like this:


(those screenshots have been made from an example website).
To use the activate/deactivate AJAX interface in the backend td_track_album
module, remember to enable the graphics module of the tdCorePlugin
inside your settings.yml file (see tdCorePlugin README).
enabled_modules: [graphics ]( ...,)
Configuration
You can modify settings of the tdAudioPlugin in the
config/tdAudioPluginConfiguration.class.php file:
- td_audio_upload_dir - upload dir of all audio files
Translations
You may translate tdAudio module to your own language by creating
td.XX.xml file under modules/tdSampleAudio/i18n
directory (where XX is the language code). So far, English language is the
default one and additionally Polish translationis provided.
Dependencies