Files
wyczarujprezent.pl/modules/anblog/config.php
2025-07-03 20:56:08 +02:00

78 lines
2.0 KiB
PHP

<?php
/**
* 2024 Anvanto
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
*
* @author Anvanto <anvantoco@gmail.com>
* @copyright 2024 Anvanto
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
*/
if (!defined('_PS_VERSION_')) {
exit;
}
$blog_config = array(
'blog_link_title' => 'Blog',
'link_rewrite' => 'blog',
'category_rewrite' => '',
'detail_rewrite' => 'post',
'meta_title' => 'Blog',
'meta_description' => '',
'meta_keywords' => '',
'indexation' => 0,
'rss_limit_item' => 5,
'rss_title_item' => 'RSS FEED',
// 'latest_limit_items' => 20,
'saveConfiguration' => '',
'listing_show_categoryinfo' => 1,
'listing_limit_items' => 3,
'listing_show_title' => 1,
'listing_show_description' => 1,
'listing_show_readmore' => 1,
'listing_show_image' => 1,
'listing_show_author' => 0,
'listing_show_category' => 0,
'listing_show_created' => 1,
'listing_show_hit' => 0,
'listing_show_counter' => 0,
'item_show_description' => 1,
'item_show_image' => 1,
'item_show_author' => 1,
'item_show_category' => 1,
'item_show_created' => 1,
'item_show_hit' => 1,
'item_show_counter' => 1,
'social_code' => '',
'google_captcha_status' => 0,
'google_captcha_site_key' => '',
'google_captcha_secret_key' => '',
'item_show_listcomment' => 1,
'item_show_formcomment' => 1,
'item_comment_engine' => 'local',
'item_posts_type' => 'type1',
'show_in_blog' => '1',
'show_in_post' => '1',
'show_in_DisplayHome' => '1',
'item_limit_comments' => '10',
'item_diquis_account' => 'demo4antheme',
'item_facebook_appid' => '100858303516',
'item_facebook_width' => '600',
'limit_recent_blog' => '2',
'limit_DisplayHome_blog' => '3',
'categories_DisplayHome_blog' => '',
'enable_google_sitemap' => 1,
'enable_posts_sitemap' => 1,
'enable_categories_sitemap' => 1,
);
return $blog_config;