" id="listid"/> <input type="hidden" value="<?php echo $start; ?> " id="slice"/> <table id='lists-members'> <th>First Name</th> <th>Last Name</th> <th>Email</th> <th class="actions">Actions</th> <tbody> <?php foreach ($members as $member) { ?> <?php if ($row = display_email_data($member, $listid, $filters)) { ?> <?php echo $row; ?> <?php $rowSeen = true; } } ?> <?php if (!$rowSeen) { ?> <tr><td colspan="4"><em>No users found given your filter settings for this grouping</em></td></tr> <?php }
public function update_email_row($person_id, $list) { $person = $this->Person->get_info($person_id); echo display_email_data($person, $list, false); }