skeeks\cms\traits\HasComponentDbSettingsTrait::getEditUrl PHP Method

getEditUrl() public method

public getEditUrl ( ) : UrlHelper
return skeeks\cms\helpers\UrlHelper
    public function getEditUrl()
    {
        $attributes = [];
        foreach ($this->defaultAttributes as $key => $value) {
            if (!is_object($value)) {
                $attributes[$key] = $value;
            }
        }
        return UrlHelper::construct('/cms/admin-component-settings/index', ['componentClassName' => $this->className(), 'attributes' => $attributes, 'componentNamespace' => $this->namespace])->enableAdmin()->setSystemParam(\skeeks\cms\modules\admin\Module::SYSTEM_QUERY_EMPTY_LAYOUT, 'true');
    }