SymfonyのAdminを久々に使った
関連テーブルが数字プルダウンメニューになるとき、これを文字列にしたいよね。
ググる前にマニュアルよめって事でした。
14-Generators
One-to-Many RelationshipsThe 1-n table relationships are taken care of by the administration generator. As is depicted by Figure 14-1 earlier, the blog_comment table is related to the blog_article table through the article_id field. If you initiate the module of the BlogComment class with the administration generator, the edit view will automatically display the article_id as a drop-down list showing the IDs of the available records of the blog_article table (check again Figure 14-9 for an illustration).
AdminのリストのSelectで表示を数字から中身の名前にしたいとき。
結論
Model#__toString();に書けばオッケーですよ。