Added license info & corrected company name.

This commit is contained in:
Rich Morgan 2014-01-28 21:34:56 -06:00
parent 843769a8d6
commit 8b01715d63
1 changed files with 24 additions and 7 deletions

View File

@ -1,11 +1,28 @@
<?php <?php
class Bitpay_Bitcoins_Model_Resource_Ipn extends Mage_Core_Model_Resource_Db_Abstract /**
{ * ©2011,2012,2013,2014 BITPAY, INC.
protected function _construct() *
{ * Permission is hereby granted to any person obtaining a copy of this software
$this->_init('Bitcoins/ipn', 'id'); * and associated documentation for use and/or modification in association with
} * the bitpay.com service.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
* Bitcoin payment plugin using the bitpay.com service.
*
*/
class Bitpay_Bitcoins_Model_Resource_Ipn extends Mage_Core_Model_Resource_Db_Abstract {
protected function _construct() {
$this->_init('Bitcoins/ipn', 'id');
}
} }
?> ?>