• Fabrik4.5.1 for Joomla5.2.4

    Fabrik4.5.1 is out. This update is needed for J!5.2.4

    See Announcements

Override a Specific Field

  • Views Views: 14,439
  • Last updated Last updated:

Navigation

  • Each row of your List is rendered with components/com_fabrik/views/table/tmpl/default_row.php. The standard file for this looks like:

    PHP:
    <?php
        defined('_JEXEC') or die( 'Restricted access');
    ?>
     
    <tr id="<?php echo $this->_row->id;?>" class="<?php echo $this->_row->class;?>">
        <?php foreach ($this->headings as $heading=>$label) {&nbsp;?>
            <td <?php echo $this->cellClass[$heading]?>><?php echo @$this->_row->data->$heading;?></td>
        <?php }?>
    </tr>
    If we want to alter a single cell, in this case replacing the 'email' value with the text 'email address withheld', we can do this:
    PHP:
    <?php
        defined('_JEXEC') or die( 'Restricted access');
    ?>
     
    <tr id="<?php echo $this->_row->id;?>" class="<?php echo $this->_row->class;?>">
        <?php foreach ($this->headings as $heading=>$label) {&nbsp;?>
            <td <?php echo $this->cellClass[$heading]?>>
            <?php if ($heading == 'tablename___email') {
                    echo "email address witheld';
                } else {
                    echo @$this->_row->data->$heading;
                }?>
            </td>
        <?php }?>
    </tr>
    Easy when you know how.
Back
Top