getFeed example

 catch (Exception $e) {
            $this->View()->assign(['success' => false, 'errorMsg' => $e->getMessage()]);
        }
    }

    /** * Returns a JSON string to the view containing the detail information of an Product Feed */
    public function getDetailFeedAction()
    {
        $feedId = (int) $this->Request()->feedId;
        $feed = $this->getFeed($feedId);
        $this->View()->assign(['success' => true, 'data' => $feed]);
    }

    /** * Returns a JSON string to the view containing the supplier information of an Product Feed */
    public function getSuppliersAction()
    {
        $filter = $this->Request()->filter;
        $usedIds = $this->Request()->usedIds;

        
Home | Imprint | This part of the site doesn't use cookies.