定制 topshelfcraft/supersort 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

topshelfcraft/supersort

最新稳定版本:5.0.0

Composer 安装命令:

composer require topshelfcraft/supersort

包简介

...a super-duper sorting function for your Craft templates.

README 文档

README

...a super-duper sorting function for your Craft CMS templates.

A Top Shelf Craft creation
Michael Rog, Proprietor

What is SuperSort?

The SuperSort plugin provides a powerful Twig filter that helps with ordering an array of values — either using one of PHP's built-in methods to sort the actual values, or using custom "sort as" methods to arrange the array based on the rendered results of processing each member as a Twig object template.

Using SuperSort's "sort as" methods, you can sort an array of elements by any accessible object value — including values from Matrix blocks, attributes of related elements, math calculations, etc.

Usage

Installation

Visit the Plugin Store in your Craft control panel, search for SuperSort, and click to Install the plugin.

Or, if you're feeling frisky, you can install SuperSort via Composer:

composer require topshelfcraft/supersort

General usage

Use the supersort filter to sort an array of objects.

(You can apply supersort to any array or ElementQuery. A non-array-like source will be converted into a single-item array... which probably isn't very useful for sorting.)

Basic Sorting

The first parameter of the filter specifies the sort method.

{% set sortedSource = source | supersort('asort') %}

You can use any of PHP's built-in sort methods:

If you don't supply this first parameter, a plain vanilla asort will be applied:

{% set sortedSource = source | supersort %}

In many common cases — such as when you're sorting names, numbers, or filenames — the default 'asort' algorithm may produce unwanted results. In those cases, consider using the case-insensitive natural sorting algorithm ('natcasesort').

Advanced ("As") Sorting

You can also sort by one of SuperSort's custom methods:

  • 'sortAs'
  • 'rsortAs'
  • 'natsortAs'
  • 'natcasesortAs'

To use these methods, you will provide a second parameter, which is a Twig object template to render using each object in the array:

{% set upcomingEvents = upcomingEvents | supersort('sortAs', '{eventDates.first.date}') %}

{% set upcomingEvents = upcomingEvents | supersort('sortAs', '{{ object.eventDates.first.date }}') %}

(This "object template" syntax is the same as you might use to define a Dynamic Subfolder Path for an Assets field.

Sort Flags

You can optionally provide a third parameter — one of PHP's sort flags.

{% set source = source | supersort('sortAs', '{foo}', SORT_NUMERIC) %}

{% set source = source | supersort('asort', null, SORT_NUMERIC) %}

If you don't supply this third parameter, the default (SORT_REGULAR) flag is used.

Using SuperSort as a PHP helper

If you'd like to use the superSort() method as a helper in another Craft plugin or component, you can access it in PHP directly from the Sorter service:

$result = Sorter::superSort($array, $method, $as, $sortFlag, $comp);

(Note: PHP's built-in sort methods sort an array in place and return a boolean representing success. The superSort() method, by contrast, returns the result array.)

Support

What are the system requirements?

Craft 4.0+ and PHP 8.0+

I found a bug.

Nah...

I triple-checked. It's a bug.

Well, alright. Please open a GitHub Issue, or submit a PR to the 4.x.dev branch.

Contributors:

统计信息

  • 总下载量: 85.99k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 42
  • 点击次数: 2
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 42
  • Watchers: 2
  • Forks: 2
  • 开发语言: PHP

其他信息

  • 授权协议: proprietary
  • 更新时间: 2018-02-03