diff --git a/app/code/community/Bitpay/Bitcoins/Model/Resource/Ipn.php b/app/code/community/Bitpay/Bitcoins/Model/Resource/Ipn.php index eaa3571..c192d53 100644 --- a/app/code/community/Bitpay/Bitcoins/Model/Resource/Ipn.php +++ b/app/code/community/Bitpay/Bitcoins/Model/Resource/Ipn.php @@ -1,11 +1,28 @@ _init('Bitcoins/ipn', 'id'); - } +/** + * ©2011,2012,2013,2014 BITPAY, INC. + * + * Permission is hereby granted to any person obtaining a copy of this software + * 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'); + } } -?> \ No newline at end of file +?>