PluginProbe
MBE eShip / trunk
MBE eShip vtrunk
2.8.1 trunk 1.0.0 1.1.0 1.1.3 1.2.1 1.2.2 1.3.0 1.4.0 1.4.1 1.5.0 1.5.1 1.5.2 1.6.0 1.7.0 1.7.1 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.1.0 2.1.1 2.1.2 2.2.1 All 37 releases
mail-boxes-etc / lib / Interfaces / CsvEntityModelInterface.php

CsvEntityModelInterface.php in MBE eShip trunk, at lib/Interfaces/CsvEntityModelInterface.php

9 lines 188 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 interface Mbe_Shipping_Csv_Entity_Model_Interface
4 {
5 public function getTableName();
6 public function truncate();
7 public function insertRow($row);
8 public function tableExists();
9 }