通过重量模块对物品排序

时间:2012-12-26 09:55:10

标签: php drupal sorting drupal-7 drupal-modules

我有一个自定义模块并安装了Weight模块。我想要,在页面上对重量项目进行排序。但我不知道我该怎么做?

我的模块: http://pastebin.com/DuCdFdH6

1 个答案:

答案 0 :(得分:0)

您可以按原样使用模块(使用其UI),也可以使用模块internally uses的私有函数。

即:

_weight_set_weight($node)
_weight_get_weight($node)
_weight_get_settings($type = NULL)
_weight_get_types()
_weight_get_options($range)
_weight_set_defaults($default, $type)

但很明显,在定义模块时,它希望您使用定义的视图,更常见的是它的UI。

如果您不知道如何使用它,请参阅its documentation