iaPatchApplier::_processExtras PHP Method

_processExtras() protected method

protected _processExtras ( array $entries )
$entries array
    protected function _processExtras(array $entries)
    {
        foreach ($entries as $entry) {
            $friendlyName = ucfirst($entry['name']);
            if ($entry['type'] == self::EXTRA_TYPE_PLUGIN) {
                iaHelper::installRemotePlugin($entry['name']) ? $this->_logInfo('Installation of :name is successfully completed.', self::LOG_SUCCESS, array('name' => $friendlyName)) : $this->_logInfo('Unable to install :name due to errors.', self::LOG_ERROR, array('name' => $friendlyName));
            } else {
                $this->_logInfo('Installation of ":name" requested. Ignored since installation of this type is not currently implemented.', self::LOG_ALERT, array('name' => $friendlyName));
            }
        }
    }