phpbb_questionnaire_data_collector::collect PHP Method

collect() public method

Collect info into the data property.
public collect ( ) : null
return null
    function collect()
    {
        foreach (array_keys($this->providers) as $key) {
            $provider =& $this->providers[$key];
            $this->data[$provider->get_identifier()] = $provider->get_data();
        }
        $this->data['install_id'] = $this->install_id;
    }