This file contains hidden or 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
<?php | |
ini_set('display_errors', 1); | |
$client = new SoapClient('http://MAGENTO_URL/index.php/api/v2_soap/?wsdl'); | |
$session = $client->login('USERNAME', 'PASSWORD'); | |
$complexFilter = array( | |
'complex_filter' => array( |
This file contains hidden or 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
<?php | |
class Ebizmarts_SagePaysuite_Block_Adminhtml_Sales_Order_Grid_Renderer_State extends Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract { | |
/** | |
* Renders grid column | |
* | |
* @param Varien_Object $row | |
* @return string | |
*/ |
This file contains hidden or 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
<?php | |
class Ebizmarts_SagePayReporting_Model_Cron | |
{ | |
public function getThirdmanScores($cron) | |
{ | |
$tblName = Mage::getSingleton('core/resource')->getTableName('sagepayreporting_fraud'); | |
$sagepayOrders = Mage::getResourceModel('sales/order_grid_collection'); |
NewerOlder