/** * Build entity page URL * * @param \XLite\Model\AEntity $entity Entity * @param array $column Column data * * @return string */ protected function buildEntityURL(\XLite\Model\AEntity $entity, array $column) { switch ($column[static::COLUMN_LINK]) { case 'profile_list': $result = \XLite\Core\Converter::buildURL($column[static::COLUMN_LINK], '', array('membership' => $entity->getMembershipId())); break; default: $result = parent::buildEntityURL($entity, $column); break; } return $result; }