🔧 Utilise l'id plutôt que le nom

Comme ça, s'il change, on est safe
This commit is contained in:
Clement Desmidt 2017-11-21 07:20:14 +01:00
parent cc27b189b1
commit be5336fc13
2 changed files with 12 additions and 1 deletions

View File

@ -91,6 +91,17 @@ class Deal
return $this->data['price'];
}
/**
* @return int
*/
public function getIdCategory(): int
{
return (int) $this->data['category'];
}
/**
* @return string
*/
public function getCategory(): string
{
return Categories::$categories[$this->data['category']];

View File

@ -25,7 +25,7 @@
<select id="category" name="category">
<option value=""></option>
@foreach(\Shikiryu\LBCReposter\Categories::$categories as $id => $category)
<<option value="{{ $id }}" @if( $deal->getCategory() === $category ) selected="selected" @endif>{{ $category }}</option>
<<option value="{{ $id }}" @if( $deal->getIdCategory() === $id ) selected="selected" @endif>{{ $category }}</option>
@endforeach
</select><br>
<input type="submit" value="Modifier" />