-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b112b28
commit bb8bcb3
Showing
11 changed files
with
87 additions
and
144 deletions.
There are no files selected for viewing
This file contains 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
10 changes: 0 additions & 10 deletions
10
...ents/commerce_digitalproduct/model/commerce_digitalproduct/mysql/digitalproduct.class.php
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,3 @@ | ||
<?php | ||
/** | ||
* Digitalproduct for Commerce. | ||
* | ||
* Copyright 2018 by Tony Klapatch <[email protected]> | ||
* | ||
* This file is meant to be used with Commerce by modmore. A valid Commerce license is required. | ||
* | ||
* @package commerce_digitalproduct | ||
* @license See core/components/commerce_digitalproduct/docs/license.txt | ||
*/ | ||
require_once (dirname(__DIR__) . '/digitalproduct.class.php'); | ||
class Digitalproduct_mysql extends Digitalproduct {} |
11 changes: 0 additions & 11 deletions
11
...ts/commerce_digitalproduct/model/commerce_digitalproduct/mysql/digitalproduct.map.inc.php
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,4 @@ | ||
<?php | ||
/** | ||
* Digitalproduct for Commerce. | ||
* | ||
* Copyright 2018 by Tony Klapatch <[email protected]> | ||
* | ||
* This file is meant to be used with Commerce by modmore. A valid Commerce license is required. | ||
* | ||
* @package commerce_digitalproduct | ||
* @license See core/components/commerce_digitalproduct/docs/license.txt | ||
*/ | ||
|
||
$xpdo_meta_map['Digitalproduct']= array ( | ||
'package' => 'commerce_digitalproduct', | ||
'version' => '1.1', | ||
|
10 changes: 0 additions & 10 deletions
10
.../commerce_digitalproduct/model/commerce_digitalproduct/mysql/digitalproductfile.class.php
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,3 @@ | ||
<?php | ||
/** | ||
* Digitalproduct for Commerce. | ||
* | ||
* Copyright 2018 by Tony Klapatch <[email protected]> | ||
* | ||
* This file is meant to be used with Commerce by modmore. A valid Commerce license is required. | ||
* | ||
* @package commerce_digitalproduct | ||
* @license See core/components/commerce_digitalproduct/docs/license.txt | ||
*/ | ||
require_once (dirname(__DIR__) . '/digitalproductfile.class.php'); | ||
class DigitalproductFile_mysql extends DigitalproductFile {} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,4 @@ | ||
<?php | ||
/** | ||
* Digitalproduct for Commerce. | ||
* | ||
* Copyright 2018 by Tony Klapatch <[email protected]> | ||
* | ||
* This file is meant to be used with Commerce by modmore. A valid Commerce license is required. | ||
* | ||
* @package commerce_digitalproduct | ||
* @license See core/components/commerce_digitalproduct/docs/license.txt | ||
*/ | ||
|
||
$xpdo_meta_map['DigitalproductFile']= array ( | ||
'package' => 'commerce_digitalproduct', | ||
'version' => '1.1', | ||
|
@@ -23,9 +12,11 @@ | |
array ( | ||
'digitalproduct_id' => NULL, | ||
'secret' => '', | ||
'resource' => NULL, | ||
'name' => '', | ||
'resource' => 0, | ||
'file' => NULL, | ||
'download_count' => 0, | ||
'download_limit' => 0, | ||
'download_expiry' => 0, | ||
), | ||
'fieldMeta' => | ||
|
@@ -46,11 +37,21 @@ | |
'null' => false, | ||
'default' => '', | ||
), | ||
'resource' => | ||
'name' => | ||
array ( | ||
'dbtype' => 'text', | ||
'dbtype' => 'varchar', | ||
'precision' => '190', | ||
'phptype' => 'string', | ||
'null' => true, | ||
'null' => false, | ||
'default' => '', | ||
), | ||
'resource' => | ||
array ( | ||
'dbtype' => 'int', | ||
'attributes' => 'unsigned', | ||
'phptype' => 'int', | ||
'null' => false, | ||
'default' => 0, | ||
), | ||
'file' => | ||
array ( | ||
|
@@ -67,6 +68,15 @@ | |
'null' => false, | ||
'default' => 0, | ||
), | ||
'download_limit' => | ||
array ( | ||
'dbtype' => 'int', | ||
'attributes' => 'unsigned', | ||
'precision' => '10', | ||
'phptype' => 'int', | ||
'null' => false, | ||
'default' => 0, | ||
), | ||
'download_expiry' => | ||
array ( | ||
'dbtype' => 'int', | ||
|
10 changes: 0 additions & 10 deletions
10
..._digitalproduct/model/commerce_digitalproduct/mysql/digitalproductordershipment.class.php
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,3 @@ | ||
<?php | ||
/** | ||
* Digitalproduct for Commerce. | ||
* | ||
* Copyright 2018 by Tony Klapatch <[email protected]> | ||
* | ||
* This file is meant to be used with Commerce by modmore. A valid Commerce license is required. | ||
* | ||
* @package commerce_digitalproduct | ||
* @license See core/components/commerce_digitalproduct/docs/license.txt | ||
*/ | ||
require_once (dirname(__DIR__) . '/digitalproductordershipment.class.php'); | ||
class DigitalproductOrderShipment_mysql extends DigitalproductOrderShipment {} |
11 changes: 0 additions & 11 deletions
11
...igitalproduct/model/commerce_digitalproduct/mysql/digitalproductordershipment.map.inc.php
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,4 @@ | ||
<?php | ||
/** | ||
* Digitalproduct for Commerce. | ||
* | ||
* Copyright 2018 by Tony Klapatch <[email protected]> | ||
* | ||
* This file is meant to be used with Commerce by modmore. A valid Commerce license is required. | ||
* | ||
* @package commerce_digitalproduct | ||
* @license See core/components/commerce_digitalproduct/docs/license.txt | ||
*/ | ||
|
||
$xpdo_meta_map['DigitalproductOrderShipment']= array ( | ||
'package' => 'commerce_digitalproduct', | ||
'version' => '1.1', | ||
|
10 changes: 0 additions & 10 deletions
10
...mmerce_digitalproduct/model/commerce_digitalproduct/mysql/digitalproductproduct.class.php
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,3 @@ | ||
<?php | ||
/** | ||
* Digitalproduct for Commerce. | ||
* | ||
* Copyright 2018 by Tony Klapatch <[email protected]> | ||
* | ||
* This file is meant to be used with Commerce by modmore. A valid Commerce license is required. | ||
* | ||
* @package commerce_digitalproduct | ||
* @license See core/components/commerce_digitalproduct/docs/license.txt | ||
*/ | ||
require_once (dirname(__DIR__) . '/digitalproductproduct.class.php'); | ||
class DigitalproductProduct_mysql extends DigitalproductProduct {} |
11 changes: 0 additions & 11 deletions
11
...erce_digitalproduct/model/commerce_digitalproduct/mysql/digitalproductproduct.map.inc.php
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,4 @@ | ||
<?php | ||
/** | ||
* Digitalproduct for Commerce. | ||
* | ||
* Copyright 2018 by Tony Klapatch <[email protected]> | ||
* | ||
* This file is meant to be used with Commerce by modmore. A valid Commerce license is required. | ||
* | ||
* @package commerce_digitalproduct | ||
* @license See core/components/commerce_digitalproduct/docs/license.txt | ||
*/ | ||
|
||
$xpdo_meta_map['DigitalproductProduct']= array ( | ||
'package' => 'commerce_digitalproduct', | ||
'version' => '1.1', | ||
|
This file contains 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
This file contains 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