Skip to content

Instantly share code, notes, and snippets.

@mcfdn
Created November 6, 2012 19:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mcfdn/4027042 to your computer and use it in GitHub Desktop.
Save mcfdn/4027042 to your computer and use it in GitHub Desktop.
Call to Table View Helper
<?php
echo $this->renderTable(
array(
'#' => 'Id',
'Username' => 'Username',
'Email Address' => 'EmailAddress',
'Date Added' => 'DateCreated',
'Manage' => array(
'Static' => '<a href="/user/view?id=%UserId%">View %Username%</a>',
'Placeholders' => array(
'UserId' => 'Id',
'Username' => 'Username'
)
)
),
$this->users
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment