Created
April 13, 2011 05:31
-
-
Save bshaffer/917009 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<tr> | |
<th class="batch checkboxes"><input type="checkbox" class="checkbox" /></th> | |
<th> | |
<?php echo link_to('Username', '@sf_guard_user', array('query_string' => 'sort=username&sort_direction='.$helper->toggleSortDirection('username'), 'class' => $helper->getSortDirection('username'))) ?> | |
</th> | |
<th> | |
<?php echo link_to('First Name', '@sf_guard_user', array('query_string' => 'sort=first_name&sort_direction='.$helper->toggleSortDirection('first_name'), 'class' => $helper->getSortDirection('first_name'))) ?> | |
</th> | |
<th> | |
<?php echo link_to('Last Name', '@sf_guard_user', array('query_string' => 'sort=last_name&sort_direction='.$helper->toggleSortDirection('last_name'), 'class' => $helper->getSortDirection('last_name'))) ?> | |
</th> | |
<th> | |
<?php echo link_to('Email Address', '@sf_guard_user', array('query_string' => 'sort=email_address&sort_direction='.$helper->toggleSortDirection('email_address'), 'class' => $helper->getSortDirection('email_address'))) ?> | |
</th> | |
<th> | |
<?php echo link_to('Created At', '@sf_guard_user', array('query_string' => 'sort=created_at&sort_direction='.$helper->toggleSortDirection('created_at'), 'class' => $helper->getSortDirection('created_at'))) ?> | |
</th> | |
<th class="actions">Actions</th> | |
</tr> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment