本文整理匯總了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;
}