-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
executable file
·62 lines (35 loc) · 1.65 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
Assets Management Plugin
-------------------------
VamShop Assets Management Plugin
Installation using composer:
1. Install package from your VamShop root directory (where composer.json located):
composer require vamshop/assets
2. Activate plugin at Admin - Extensions - Plugins - Assets
Manual Installation:
1. Download or clone repository http://github.com/vamshop/assets
2. Copy files from archive analytics-master folder to /app/plugins/Assets folder
3. Activate plugin at Admin - Extensions - Plugins - Assets
## Usage
Once activated successfully, three new buttons (Reload, Browse, and Upload)
and a new "Assets" tab will be added to the `edit` action of the following
pages: Nodes, Blocks, and Types.
Clicking on the "Upload" button will bring up a popup window, where you can
select and upload the asset file.
### Featured Image
When ticking the "Featured Image" checkbox, the asset will be automatically
grouped under the "Featured Image" record.
A simple helper method (AssetsImageHelper::featured) is included for basic
markup generation.
### Adapter
Two adapters are provided in the plugin:
* Local Attachment
Default storage adapter. When using this adapter, assets will be
stored under `APP/webroot/assets` directory.
* Local Attachment (Legacy)
This adapters mimics the original Vamshop behavior, where images are
stored under `APP/webroot/uploads` directory.
# Dependencies
- [Imagine](https://github.com/CakeDC/Imagine) plugin which is a CakePHP
friendly wrapper for [Imagine image processing library](http://imagine.readthedocs.org/).
Tested with 1.0.1-3-g500a559
- [Gaufrette](https://github.com/Knplabs/Gaufrette) library