2017 © Pedro Peláez
 

library ckeditor

Library for generate wysiwyg in PHP

image

wysiwyg/ckeditor

Library for generate wysiwyg in PHP

  • Thursday, August 15, 2013
  • by balestrincamila
  • Repository
  • 2 Watchers
  • 4 Stars
  • 83 Installations
  • JavaScript
  • 0 Dependents
  • 0 Suggesters
  • 3 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Ckeditor for Laravel 4

Use the config:publish artisan command, (*1)

php artisan config:publish wysiwyg/ckeditor

And the asset:publish artisan command to pubish the assets, (*2)

php artisan asset:publish wysiwyg\ckeditor

When this command is executed, the configuration file will be copied to app/config/packages/vendor/package where they can be safely modified., (*3)

include in app/config/app.php in array of Autoloaded Service Providers, (*4)

'Wysiwyg\Ckeditor\Providers\CkeditorServiceProvider'

To test if is OK, you should create a route:, (*5)

Route::get('/ck', function(){   
  echo CKEditor::editor('textarea_name','<h1>Teste</h1><p><i>Teste</i></p>');
});

The Versions

15/08 2013

dev-master

9999999-dev

Library for generate wysiwyg in PHP

  Sources   Download

The Requires