PHP code example of pickles2 / px2-paprika
1. Go to this page and download the library: Download pickles2/px2-paprika library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
pickles2 / px2-paprika example snippets
/**
* config.php template
*/
return call_user_func( function(){
// ...中略...
// 拡張子 `*.php` を、php用プロセッサに関連付け
$conf->paths_proc_type = array(
// ...中略...
'*.php' => 'php', // <- for Paprika Framework
// ...中略...
);
// 拡張子 `*.php` で、サイトマップを有効化
$conf->paths_enable_sitemap = array(
// ...中略...
'*.php', // <- for Paprika Framework
// ...中略...
);
/**
* funcs: Before content
*/
$conf->funcs->before_content = array(
// Paprika - PHPアプリケーションフレームワーク
// before_content の先頭に設定してください。
'picklesFramework2\paprikaFramework\main::before_content('.json_encode( array(
// アプリケーションが動的に生成したコンテンツエリアの名称
'bowls'=>array('custom_area_1', 'custom_area_2', ),
// Paprika を適用する拡張子の一覧
'exts' => array('php'),
) ).')' ,
// ...中略...
);
/**
* processor
*/
$conf->funcs->processor->php = array(
// Paprika - PHPアプリケーションフレームワーク
'picklesFramework2\paprikaFramework\main::processor' ,
// html のデフォルトの処理を追加
$conf->funcs->processor->html ,
);