0

In Prestashop, when a change takes place in a module configuration, where is located the physical change in the files directory? I ask because I use git versioning and I wan this to be accounted for, but maybe it is removed by my .gitignore.

Example: manufacturer block, I change the number of displayed manufacturers displayed. Git doesn't account for it, it says "no changes".

Thanks.

4

1 に答える 1

0

これらの変更はすべてモジュールに依存します。prestashop admin でモジュール構成を変更したと思います。製造元ブロックでは、表示された製造元の数の値がデータベース構成テーブルに格納されます。したがって、GIT は「変更なし」と表示します。

prestashop はすべての構成データを構成テーブルに保存することに注意してください。したがって、構成のペアが 1 つしかない場合 (オプション => 値)、構成テーブルに格納できます。それ以外の場合は、独自のテーブルを作成できます。

直接のファイル変更ではないため、modules/blockmanufcaturer/blockmanufacturere.php のデフォルト値を変更しない限り、GIT は変更を認識しません。

これが役立つことを願っています。

ありがとうございました

于 2013-04-26T16:43:50.290 に答える