2017 © Pedro Peláez
 

library aws

Amazon Web Services for KISSCMS

image

kisscms/aws

Amazon Web Services for KISSCMS

  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 1 Open issues
  • 5 Versions
  • 0 % Grown

The README.md

AWS plugin for KISSCMS

Simple CRUD methods to AWS for KISSCMS, (*1)

Dependencies

Install

Add the plugin in your plugins folder manually or as a submodule, for example:, (*2)

git submodule install git://github.com/kisscms/aws.git ./app/plugins/aws/

In your env.json you'll need to add where your root SDK folder. The SDK path will be used to include the AWS PHP SDK, which should live in this path:, (*3)

SDK. "aws/[VERSION]/aws.phar"

Usage

Create models using the SimpleDB trait, (*4)

class MyModel extends Model {
    use SimpleDB;
}

Then use like any other KISSCMS module:, (*5)

$data = new MyModel();

$data->set(...);
$data->create();

or, (*6)

$data = new MyModel( id );

$data->set(...);
$data->update();

Methods

Currently supporting the basic CRUD methods: create, read, update, delete, (*7)

Options

These are the options added in the site's configuration, (*8)

Simple DB

  • simpleDB_host: The host of the SimpleDB table(s) (default: sdb.us-west-1.amazonaws.com)
  • simpleDB_timestamps: If enabled inserts created & updated flags for every item (default: true)
  • simpleDB_soft_delete: A boolean that if selected hides the items instead of deleting (default: false)

S3

  • s3_region: The region of the S3 bucket(s) (default: s3-us-west-1.amazonaws.com)

Credits

Created by Makis Tracend ( @tracend ), (*9)

Distributed through Makesites.org, (*10)

Released under the MIT license, (*11)

The Versions

27/04 2015

dev-master

9999999-dev http://kisscms.com

Amazon Web Services for KISSCMS

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

aws kisscms

05/02 2014

3.0.0

3.0.0.0 http://kisscms.com

Amazon Web Services for KISSCMS

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

aws kisscms

09/08 2013

2.5.0

2.5.0.0 http://kisscms.com

Amazon Web Services for KISSCMS

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

aws kisscms

21/07 2013

2.0.0

2.0.0.0 http://kisscms.com

Amazon Web Services for KISSCMS

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

aws kisscms

15/06 2012

1.0

1.0.0.0 http://kisscms.com

Amazon Web Services for KISSCMS

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

aws kisscms