Skip to content

Commit

Permalink
creating a release for the thickbox plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
dogmatic69 committed Nov 11, 2010
1 parent 3105a08 commit fcbede6
Show file tree
Hide file tree
Showing 4 changed files with 78 additions and 0 deletions.
1 change: 1 addition & 0 deletions config/config.json
@@ -0,0 +1 @@
{"id":"4cdc2282-927c-46c3-81ee-247a6318cd70","name":"Thickbox","update_url":"infinitas-cms.org\/plugins\/version\/plugin:thickbox","version":"0.1","dependancies":[],"author":"Infinitas","website":"http:\/\/infinitas-cms.org","description":"Add a thickbox effect to your Infinitas powered site with this easy to use plugin","license":"MIT"}
56 changes: 56 additions & 0 deletions config/releases/000001_thickbox.php
@@ -0,0 +1,56 @@
<?php
class R4cdc22bda7c0495090e1247a6318cd70 extends CakeRelease {

/**
* Migration description
*
* @var string
* @access public
*/
public $description = 'Migration for Thickbox version 0.1';

/**
* Plugin name
*
* @var string
* @access public
*/
public $plugin = 'Thickbox';

/**
* Actions to be performed
*
* @var array $migration
* @access public
*/
public $migration = array(
'up' => array(
),
'down' => array(
),
);


/**
* Before migration callback
*
* @param string $direction, up or down direction of migration process
* @return boolean Should process continue
* @access public
*/
public function before($direction) {
return true;
}

/**
* After migration callback
*
* @param string $direction, up or down direction of migration process
* @return boolean Should process continue
* @access public
*/
public function after($direction) {
return true;
}
}
?>
6 changes: 6 additions & 0 deletions config/releases/map.php
@@ -0,0 +1,6 @@
<?php
$map = array(
1 => array(
'000001_thickbox' => 'R4cdc22bda7c0495090e1247a6318cd70'),
);
?>
15 changes: 15 additions & 0 deletions config/schema/schema.php
@@ -0,0 +1,15 @@
<?php
/* SVN FILE: $Id$ */
/* Thickbox schema generated on: 2010-11-11 17:11:09 : 1289495229*/
class ThickboxSchema extends CakeSchema {
var $name = 'Thickbox';

function before($event = array()) {
return true;
}

function after($event = array()) {
}

}
?>

0 comments on commit fcbede6

Please sign in to comment.