浏览代码

make automatic inclusion of images and audio optional

master
Dom SP 3 年前
父节点
当前提交
cd3425839c
共有 3 个文件被更改,包括 15 次插入3 次删除
  1. +12
    -3
      app/modules/filesinfolders.php
  2. +2
    -0
      main.cfg.sample
  3. +1
    -0
      rsc/sass/_freaCMSfeatures.scss

+ 12
- 3
app/modules/filesinfolders.php 查看文件

@@ -120,6 +120,7 @@ class FilesInFolders {
// prepare content as per the struct //
///////////////////////////////////////
function fill_content() {
$f3 = \Base::instance();
$md = new \freaParsedown();
$md->deactivate_ol();
//var_dump($md->get_BlockTypes());
@@ -151,14 +152,22 @@ class FilesInFolders {
$str
);
}
if (false) { // TODO: make this configurable in main.cfg
$bulkIncludePic = array_key_exists('bulkIncludePic',$this->config)
? $this->config['bulkIncludePic']
: $f3->get('bulkIncludePic') ? : FALSE
;
if ($bulkIncludePic) {
foreach($this->structs[$domain_key]['pic'] as $key=>$file) {
$this->content[$domain][$key] = sprintf(
"<img class=\"direct\" src=\"/$file\" />"
"<img class=\"bulkImportedImage $bulkIncludePic\" src=\"/$file\" />"
);
}
}
if (true) {
$bulkIncludeAudio = array_key_exists('bulkIncludeAudio',$this->config)
? $this->config['bulkIncludeAudio']
: $f3->get('bulkIncludeAudio') ? : FALSE
;
if ($bulkIncludeAudio) {
foreach ($this->structs[$domain_key]['audio'] as $key=>$file) {
$this->content[$domain][$key] = sprintf(
'<a href="%s" class="audio">%s</a><br>',

+ 2
- 0
main.cfg.sample 查看文件

@@ -32,6 +32,8 @@ color3=#bbb
[globals]
title=Title of new Page
hideFromSearchEngines=true
bulkIncludePic=false
bulkIncludeAudio=false

;; (multilingual) content configuration
;; ------------------------------------

+ 1
- 0
rsc/sass/_freaCMSfeatures.scss 查看文件

@@ -61,6 +61,7 @@ a.content_element_box {
}

// image
.bulkImportedImage,
.content_element_image {
width: 60%;

正在加载...
取消
保存