Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- <?php
-
- namespace Lc\SovBundle\Model\Setting;
-
- trait EntitySettingTrait
- {
- public function getSetting($name)
- {
- if ($this->getSettings()) {
- foreach ($this->getSettings() as $setting) {
- if ($setting->getName() == $name) {
- return $setting;
- }
- }
- }
-
- return false;
- }
-
- public function getSettingValue($name)
- {
- if ($this->getSettings()) {
- foreach ($this->getSettings() as $setting) {
- if ($setting->getName() == $name) {
- return $setting->getValue();
- }
- }
- }
-
- return false;
- }
-
- }
|