gravity forms update

This commit is contained in:
Tony Volpe
2024-06-17 15:47:38 -04:00
parent e4e274a9a7
commit c52ceefa4b
85 changed files with 359 additions and 295 deletions

View File

@@ -188,4 +188,18 @@ class Theme_Layer_Builder {
return $this;
}
/**
* Setter for capability.
*
* @param $capability
*
* @return $this
*/
public function set_capability( $capability ) {
$this->layer->set_capability( $capability );
return $this;
}
}

View File

@@ -100,4 +100,8 @@ class Fluent_Theme_Layer extends GF_All_Access_Theme_Layer {
$this->icon = $icon;
}
public function set_capability( $capability ) {
$this->form_settings_capability = $capability;
}
}