File: D:/HostingSpaces/PvdBoogaard/indoorski.nl/backup/oude-site/cms/api/events/events.lists.php
<?php
/**
* This class defines the data to be passed through to the event it is named after.
*
* DynamicOutput is fired during the processing of a dynamic list, once for each row in the list data.
*
* Cancelling this event will prevent the row currently being processed from appearing in the final output.
*
*/
class iwp_event_lists_dynamicoutput extends iwp_event_base {
/**
* Current instance of iwp_lists
*
* @var iwp_lists
*/
public $list;
/**
* Array containing list row data from the database or calculated by the list processor
*
* @var array
*/
public $listRowArray;
/**
* Constructor
*
* @param iwp_lists $list Current instance of iwp_lists
* @param array $listRowArray Array containing list row data from the database or calculated by the list processor
* @return iwp_event_lists_dynamicoutput
*/
public function __construct (iwp_lists &$list, &$listRowArray) {
$this->list = &$list;
$this->listRowArray = &$listRowArray;
parent::__construct();
}
}