This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /// <reference path="../types/fresh.d.ts" /> | |
| const editor = getEditor(); | |
| const SEARCH_PROMPT = "multiline-project-replace-search"; | |
| const CONFIRM_POPUP = "multiline-project-replace-confirm"; | |
| const FILE_LIST_BUFFER_NAME = "Multiline Replace: Files"; | |
| const REPLACE_BUFFER_NAME = "Multiline Replace: Text"; | |
| const REPLACE_BUFFER_SNAPSHOT = "/tmp/opencode/multiline_project_replace.scratch"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // Info: | |
| // http://doc.prestashop.com/pages/viewpage.action?pageId=51184692 | |
| // Used tables: ps_manufacturer, ps_category_lang, ps_product_lang, ps_product | |
| // Run: php create_meta_product.php | |
| // Clean: | |
| // UPDATE ps_product_lang SET meta_title = "", meta_description=""; | |
| require(dirname(__FILE__).'/./config/config.inc.php'); |