カスタム属性を使用して、Magento で Varien_Object を並べ替えたいと思います。
私はこのようなものを得ました:
$thing_1 = new Varien_Object();
$thing_1->setName('Richard');
$thing_1->setOrder(2);
$thing_2 = new Varien_Object();
$thing_2->setName('Jane');
$thing_2->setOrder(1);
$collection_of_things = new Varien_Data_Collection();
$collection_of_things
->addItem($thing_1)
->addItem($thing_2);
Jane
前に出せるようにASCでソートしたいRichard
ありがとう。