本文整理汇总了PHP中Import::startUpload方法的典型用法代码示例。如果您正苦于以下问题:PHP Import::startUpload方法的具体用法?PHP Import::startUpload怎么用?PHP Import::startUpload使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Import
的用法示例。
在下文中一共展示了Import::startUpload方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: startImport
/**
* Импортирует данные из файла importCatalog.csv.
* @return boolean
*/
public function startImport()
{
$this->messageSucces = "Процесс запущен";
$this->messageError = "Неудалось начать импорт";
$import = new Import($_POST['typeCatalog']);
if (empty($_POST['rowId'])) {
unset($_SESSION['stopProcessImportCsv']);
}
if ($_POST['delCatalog'] !== null) {
if ($_POST['delCatalog'] === "true") {
DB::query('TRUNCATE TABLE `' . PREFIX . 'cache`');
if ($_POST['rowId'] == 0) {
DB::query('TRUNCATE TABLE `' . PREFIX . 'product_variant`');
DB::query('TRUNCATE TABLE `' . PREFIX . 'product`');
DB::query('TRUNCATE TABLE `' . PREFIX . 'product_user_property`');
DB::query('TRUNCATE TABLE `' . PREFIX . 'category`');
DB::query('TRUNCATE TABLE `' . PREFIX . 'category_user_property`');
}
}
}
$this->data = $import->startUpload($_POST['rowId']);
if ($this->data['status'] == 'error') {
$this->messageError = $this->data['msg'] . '';
return false;
}
return true;
}
示例2: startImport
/**
* Импортирует данные из файла importCatalog.csv.
* @return boolean
*/
public function startImport()
{
$this->messageSucces = "Процесс запущен";
$this->messageError = "Неудалось начать импорт";
$import = new Import($_POST['typeCatalog']);
if (empty($_POST['rowId'])) {
unset($_SESSION['stopProcessImportCsv']);
}
if ($_POST['delCatalog'] !== null) {
if ($_POST['delCatalog'] === "true") {
DB::query('TRUNCATE TABLE `' . PREFIX . 'cache`');
if ($_POST['rowId'] == 0) {
DB::query('TRUNCATE TABLE `' . PREFIX . 'product_variant`');
DB::query('TRUNCATE TABLE `' . PREFIX . 'product`');
DB::query('TRUNCATE TABLE `' . PREFIX . 'product_user_property`');
DB::query('TRUNCATE TABLE `' . PREFIX . 'category`');
DB::query('TRUNCATE TABLE `' . PREFIX . 'category_user_property`');
/*
* Характеристики не удаляются потому что их id могут использоваться
* для кастомизированного вывода, и могут быть характеристики созданные из плагинов.
*/
}
}
}
$this->data = $import->startUpload($_POST['rowId']);
if ($this->data['status'] == 'error') {
$this->messageError = $this->data['msg'] . '';
return false;
}
return true;
}