Home
last modified time | relevance | path

Searched refs:uploadable_files (Results 1 – 14 of 14) sorted by relevance

/dports/finance/prestashop/prestashop/install/upgrade/sql/
H A D1.5.0.15.sql11 ALTER TABLE `PREFIX_product_shop` ADD `uploadable_files` TINYINT NOT NULL DEFAULT 0 AFTER `customiz…
13 UPDATE `PREFIX_product_shop` product_shop SET `uploadable_files` = (SELECT uploadable_files FROM `P…
H A D1.1.0.1.sql39 ADD uploadable_files TINYINT NOT NULL DEFAULT 0 AFTER customizable;
41 ADD text_fields TINYINT NOT NULL DEFAULT 0 AFTER uploadable_files;
/dports/www/thirtybees/thirtybees-1.1.0/admin/themes/default/template/controllers/products/
H A Dcustomization.tpl36 …le="controllers/products/multishop/checkbox.tpl" field="uploadable_files" type="uploadable_files"}…
37 <label class="control-label col-lg-3" for="uploadable_files">
45 …<input type="text" name="uploadable_files" id="uploadable_files" value="{$uploadable_files|htmlent…
/dports/finance/prestashop/prestashop/src/Adapter/Product/Customization/Update/
H A DProductCustomizationFieldUpdater.php111 …$product->uploadable_files = $product->countCustomizationFields(CustomizationFieldType::TYPE_FILE);
/dports/finance/prestashop/prestashop/src/Adapter/Product/QueryHandler/
H A DGetProductForEditingHandler.php295 $fileFieldsCount = (int) $product->uploadable_files;
/dports/www/thirtybees/thirtybees-1.1.0/themes/niara/
H A Dproduct.tpl635 {if $product->uploadable_files}
640 {if $product->uploadable_files|intval}
643 <ul id="uploadable_files" class="list-unstyled clearfix">
/dports/www/thirtybees/thirtybees-1.1.0/themes/niara/templates/product/
H A Dproduct-wide.tpl391 {if $product->uploadable_files}
396 {if $product->uploadable_files|intval}
399 <ul id="uploadable_files" class="list-unstyled clearfix">
/dports/www/thirtybees/thirtybees-1.1.0/themes/community-theme-default/
H A Dproduct.tpl637 {if $product->uploadable_files}
642 {if $product->uploadable_files|intval}
645 <ul id="uploadable_files" class="list-unstyled clearfix">
/dports/finance/prestashop/prestashop/classes/
H A DProduct.php208 public $uploadable_files; variable in ProductCore
6152 Product::CUSTOMIZE_FILE => (int) $this->uploadable_files,
6254 * @param int $uploadable_files
6259 public function createLabels($uploadable_files, $text_fields) argument
6262 if ((int) $uploadable_files > 0) {
6263 for ($i = 0; $i < (int) $uploadable_files; ++$i) {
/dports/finance/prestashop/prestashop/controllers/admin/
H A DAdminProductsController.php1083 …if (!$product->createLabels((int) $product->uploadable_files - $files_count, (int) $product->text_…
1089 … $product->customizable = ($product->uploadable_files > 0 || $product->text_fields > 0) ? 1 : 0;
1090 …if (($product->uploadable_files != $files_count || $product->text_fields != $text_count) && !count…
/dports/finance/prestashop/prestashop/install/data/
H A Ddb_structure.sql1646 `uploadable_files` tinyint(4) NOT NULL DEFAULT '0',
1704 `uploadable_files` tinyint(4) NOT NULL DEFAULT '0',
/dports/www/thirtybees/thirtybees-1.1.0/install/data/
H A Ddb_schema.sql1830 `uploadable_files` TINYINT(4) NOT NULL DEFAULT '0',
1875 `uploadable_files` TINYINT(4) NOT NULL DEFAULT '0',
/dports/www/thirtybees/thirtybees-1.1.0/controllers/admin/
H A DAdminProductsController.php3081 …if (!$product->createLabels((int) $product->uploadable_files - $filesCount, (int) $product->text_f…
3087 … $product->customizable = ($product->uploadable_files > 0 || $product->text_fields > 0) ? 1 : 0;
3088 …if (($product->uploadable_files != $filesCount || $product->text_fields != $textCount) && !count($…
/dports/www/thirtybees/thirtybees-1.1.0/classes/
H A DProduct.php155 public $uploadable_files; variable in ProductCore
6510 static::CUSTOMIZE_FILE => (int) $this->uploadable_files,