pixelant/demander

配置型、基于需求的过滤框架,支持TYPO3的永久链接。

安装次数: 5,961

依赖者: 1

建议者: 0

安全: 0

星标: 0

关注者: 7

分支: 4

开放问题: 2

类型:typo3-cms-extension

0.2.1 2023-02-20 10:20 UTC

This package is auto-updated.

Last update: 2024-09-20 13:38:10 UTC


README

配置型、基于需求的过滤框架,支持TYPO3的永久链接。

文档

包含从安装到如何开发扩展的各种文档

示例配置

  properties {
      property_name {
         table = tx_tablename_domain_model_blah
         field = pid
         operator = <
      }

      property_name2 {
          table = tx_tablename2_domain_model_blah
          field = uid
          operator = in
      }

      property_name3 {
          table = tx_tablename3_domain_model_blah
          field = uid
          operator = =
      }
  }

  demands {
    orderBy = name
    orderDirection = ASC
    property_name.value = 4

    or {
      property_name2.value {
         min = 3
         max = 6
      }

      property_name3.value = 6
    }
  }