获取按特定标记和自定义字段筛选的项目

时间:2014-10-08 14:05:12

标签: podio

我希望按特定标记过滤项目,并按自定义日期字段排序(外部ID为'日期')

我已经根据文档尝试了多种方式,例如PodioItem :: Filter(),其中包含标记数组和简单字符串,但我没有得到预期的结果。

我知道我们可以按标签过滤并按特定字段ID排序,但我不知道该怎么做。

来自doc的解释:

tags: Filter by the tags on the item
{field_id}: The id of the field to sort by, which can be fields of type "state", "text", "location", "money", "number", "calculation", "progress", "duration", "app", "date", "contact", "category" and "question".

有谁知道怎么做?

感谢所有人!

1 个答案:

答案 0 :(得分:0)

在本页的最底部http://podio.github.io/podio-php/items/,您可以看到如何进行日期过滤。您可以将其与标签结合使用:

$items = PodioItem::filter($app_id, array(
  'filters' => array(
    $external_id_of_date_field => array(
      "from" => "2014-01-01 00:00:00",
      "to" => "2014-07-31 23:59:59"
    ),
    'tags' => array('tag1')
  ),
));