Commit b5c50adb8aaa4a1ba1f2619ccf63e125d68e4c4e
1 parent
79dcebba
remarketing
Showing
1 changed file
with
6 additions
and
1 deletions
Show diff stats
console/controllers/FeedController.php
... | ... | @@ -59,7 +59,12 @@ class FeedController extends Controller |
59 | 59 | |
60 | 60 | $handle = fopen($dirName .'/'. $filename, "w"); |
61 | 61 | |
62 | - $content[] = ['ID', 'ID2', 'Item Category', 'Item title', 'Item description', 'Price']; | |
62 | + $content = array ( | |
63 | + array('aaa', 'bbb', 'ccc', 'dddd'), | |
64 | + array('123', '456', '789'), | |
65 | + array('"aaa"', '"bbb"') | |
66 | + ); | |
67 | + //$content[] = ['ID', 'ID2', 'Item Category', 'Item title', 'Item description', 'Price']; | |
63 | 68 | //$content[] = ['ID', 'ID2', 'Item Category', 'Item title', 'Item description', 'Price']; |
64 | 69 | |
65 | 70 | // foreach ($this->getProducts() as $product) { | ... | ... |