setBasicVariablesView() protected method

The following variables assigned: **isSuperUser** - True if the current user is the Super User, false if otherwise. **hasSomeAdminAccess** - True if the current user has admin access to at least one site, false if otherwise. **isCustomLogo** - The value of the branding_use_custom_logo option. **logoHeader** - The header logo URL to use. **logoLarge** - The large logo URL to use. **logoSVG** - The SVG logo URL to use. **hasSVGLogo** - True if there is a SVG logo, false if otherwise. **enableFrames** - The value of the [General] enable_framed_pages INI config option. If true, {@link Piwik\View::setXFrameOptions()} is called on the view. Also calls {@link setHostValidationVariablesView()}.
protected setBasicVariablesView ( View $view )
$view Piwik\View
 /**
  * Calls {@link setBasicVariablesView()} and {@link setBasicVariablesAdminView()}
  * using the supplied view.
  *
  * @param View $view
  * @api
  */
 protected function setBasicVariablesView($view)
 {
     parent::setBasicVariablesView($view);
     self::setBasicVariablesAdminView($view);
 }