appventus/aviary-bundle
Composer 安装命令:
composer require appventus/aviary-bundle
包简介
Symfony AvAviaryBundle
README 文档
README
##Description
This bundle provides multiple file uploads, based on the BlueImp jQuery file uploader package. It provides also Aviary editing image functionnalities.
##Installation
###Step 1
With Composer:
Add this line in your composer.json file: "appventus/aviary-bundle" : "dev-master"
Declare the bundle in your AppKernel.php: public function registerBundles() { $bundles = array( [...] new AppVentus\AviaryBundle\AviaryBundle(), [...]
###Step 2 : Entity
In your YourEntity.php, add a OneToOne Relation with a Gallery
/**
* @ORM\OneToOne(targetEntity="Appventus\AviaryBundle\Entity\Gallery", cascade={"persist"})
*/
private $gallery;
/**
* Set gallery
*
* @param \Appventus\AviaryBundle\Entity\Gallery $gallery
* @return Product
*/
public function setGallery(\Appventus\AviaryBundle\Entity\Gallery $gallery = null)
{
$this->gallery = $gallery;
return $this;
}
/**
* Get gallery
*
* @return \Appventus\AviaryBundle\Entity\Gallery
*/
public function getGallery()
{
return $this->gallery;
}
###Step 3 : Form Type
In your YourEntityType.php, add the GalleryType use Appventus\AviaryBundle\Form\GalleryType; class YourEntityType extends AbstractType { /** * @param FormBuilderInterface $builder * @param array $options */ public function buildForm(FormBuilderInterface $builder, array $options) { $builder [...] ->add('gallery', new GalleryType()) [...] ; } }
###Step 4
Add "aviary.uploadpath" parameter to your config.yml :
parameters:
aviary.uploadpath: /
And add "AviaryBundle:Form:fields.html.twig" to your twig.yml :
twig:
form:
resources:
- 'AviaryBundle:Form:fields.html.twig'
###Step 5 : Add styles and scripts
If You have installed our AsseticInjectorBundle bundle, add the injector tags :
- javascripts (injector="aviary_scripts")
- stylesheets (injector="aviary_styles")
###Step 6 : The Form ! {{ form_start(form, {'method': 'POST', 'attr' : {'id' : 'fileupload'}}) }} {{ form_widget(form.gallery) }} {{ form_rest(form) }} {{ form_end(form) }}
###Step 7 : Main script
var featherEditor = new Aviary.Feather({ apiKey: 'yourapikey', apiVersion: 3, theme: 'dark', appendTo: '', language: 'fr', onSave: function(imageID, newURL) { postImage(imageID, newURL); featherEditor.close(); return false; }, onError: function(errorObj) { alert(errorObj.message); } });
appventus/aviary-bundle 适用场景与选型建议
appventus/aviary-bundle 是一款 基于 HTML 开发的 Composer 扩展包,目前已累计 7.36k 次下载、GitHub Stars 达 4, 最近一次更新时间为 2014 年 11 月 24 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「upload」 「gallery」 「aviary」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 appventus/aviary-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 appventus/aviary-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 appventus/aviary-bundle 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
The file manager intended for using Laravel with CKEditor / TinyMCE / Colorbox
A module for the SilverStripe CMS which allows you to organize images in a gallery format.
Creates a basic photo gallery pagetype with albums and photos. Photos within albums are opened with a lightbox.
Quick gallery content block for Silverstripe CMS
TYPO3 CMS extension to create gallery content element with preset crop ratios and pagination
Simple gallery using FileCollections.
统计信息
- 总下载量: 7.36k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 14
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-11-24