This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Set date timezone. | |
date_default_timezone_set('Europe/Bucharest'); | |
// important variables that will be used throughout this example | |
$bucket = 'froala-dev'; | |
$region = 's3'; | |
$keyStart = 'editor/'; | |
$acl = 'public-read'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
$(function(){ | |
$('#edit').froalaEditor({ | |
enter: $.FroalaEditor.ENTER_P, | |
fileUploadToS3: { | |
bucket: '<?php echo $bucket; ?>', | |
region: '<?php echo $region; ?>', | |
keyStart: '<?php echo $keyStart; ?>', | |
params: { | |
acl: '<?php echo $acl; ?>', |
NewerOlder