インストール方法 http://doc.prestashop.com/display/PS17/Getting+started
コマンドラインでもインストールできる模様 http://doc.prestashop.com/display/PS17/Installing+PrestaShop+using+the+command-line+script
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| </head> | |
| <body> | |
| <script src='https://www.google.com/recaptcha/api.js'></script> | |
| <script> | |
| function onSubmit(token) { | |
| document.getElementById("test").submit(); |
| <?php | |
| require __DIR__.'/vendor/autoload.php'; | |
| $r = new \ReflectionClass('\Symfony\Component\Validator\Validation'); | |
| $xlifffile = dirname($r->getFilename()).'/Resources/translations/validators.en.xlf'; | |
| $yamlfile = __DIR__.'/validators.en.yml'; | |
| $phpfile = __DIR__.'/validators.en.php'; | |
| $Loader = new \Symfony\Component\Translation\Loader\XliffFileLoader(); | |
| $catalog = $Loader->load($xlifffile, 'en', 'validators'); | |
| $message = $catalog->all('validators'); |
| using System; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Security.Cryptography; | |
| using Microsoft.IdentityModel.Tokens; | |
| using Newtonsoft.Json; | |
| using Org.BouncyCastle.Crypto.Parameters; | |
| using Org.BouncyCastle.OpenSsl; | |
| namespace TestCommands |
| #!/bin/sh | |
| # Number array of en interfaces. | |
| EN_NUM="0 1 2 3" | |
| # AFTR name | |
| AFTR_FQDN="gw.transix.jp" | |
| usage() { | |
| echo "Usage: ${COM} [on|off]" |
以下の機能をサポートしているか検証する
see also http://www.geocities.jp/mickindex/database/db_tree_ns.html
以下のようなデータを生成しておく
INSERT INTO "dtb_category" VALUES(1,1,NULL,1,'キッチンツール',0,5,'2017-03-07 10:14:52','2017-03-17 13:57:14',0,1,8,'category');
| <?php // -*- coding:utf-8 -*- | |
| /** | |
| * SC_Query の PDO 版実装クラス. | |
| * | |
| * このクラスは直接インスタンス化せず, SC_QueryFactory 経由でインスタンス化する. | |
| * | |
| * @version $Id$ | |
| */ | |
| class SC_QueryPDOImpl implements SC_Query { |