|
From: <gem...@li...> - 2011-09-14 17:45:46
|
Revision: 13
http://gemstracker.svn.sourceforge.net/gemstracker/?rev=13&view=rev
Author: matijsdejong
Date: 2011-09-14 17:45:40 +0000 (Wed, 14 Sep 2011)
Log Message:
-----------
- variable order update (not change in code)
Modified Paths:
--------------
trunk/library/snippets/TrackTokenOverviewSnippet.php
Modified: trunk/library/snippets/TrackTokenOverviewSnippet.php
===================================================================
--- trunk/library/snippets/TrackTokenOverviewSnippet.php 2011-09-13 17:44:45 UTC (rev 12)
+++ trunk/library/snippets/TrackTokenOverviewSnippet.php 2011-09-14 17:45:40 UTC (rev 13)
@@ -51,11 +51,16 @@
class TrackTokenOverviewSnippet extends Gems_Snippets_TokenModelSnippetAbstract
{
/**
- * Optional: the display data of the track shown
+ * Set a fixed model sort.
*
+ * Leading _ means not overwritten by sources.
+ *
* @var array
*/
- protected $trackData;
+ protected $_fixedSort = array(
+ 'gto_round_order' => SORT_ASC,
+ 'gto_created' => SORT_ASC
+ );
/**
* The respondent2track ID
@@ -65,16 +70,11 @@
protected $respondentTrackId;
/**
- * Set a fixed model sort.
+ * Optional: the display data of the track shown
*
- * Leading _ means not overwritten by sources.
- *
* @var array
*/
- protected $_fixedSort = array(
- 'gto_round_order' => SORT_ASC,
- 'gto_created' => SORT_ASC
- );
+ protected $trackData;
/**
* Adds columns from the model to the bridge that creates the browse table.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|