-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make $settings public #158
Comments
I would be open to adding |
a solution right now for @kevinruscoe could maybe be to extend the Layout class and write custom getters for name/label? |
I'm also in need of access to the $property = (new \ReflectionClass($field))->getProperty('settings');
$property->setAccessible(true);
$settings = $field->settings; @vinkla and I have talked about this in the past on PR #139, and concluded not to add a getter method to make |
Hello, I need a way to access Layout names (before registration), but I can't seem to find an api to get them. It seems the name and label are both passed to settings, but I can't access settings because it's protected.
Would it be possible to either make $settings public; or add some public methods to get a fields name or label?
The text was updated successfully, but these errors were encountered: