0

嗨,我正在使用 symfony 1.4 教义 orm。我有三个表,例如 course、calendar 和 course_offering。Course_offering 表有两个外键指向课程表和日历表。在管理生成器中, course_offering_module 只检索这两个 ID。相反,我想要用逗号分隔的值,如果我添加新课程,它也应该自动修改外键表。这可以在管理员生成器中实现吗?如何?

4

1 回答 1

0

首先,您可以在模型中添加 __toString() 方法,以返回您想要的值而不是 id。

// lib/model/doctrine/JobeetJob.class.php
class JobeetJob extends BaseJobeetJob
{
  public function __toString()
  {
    return sprintf('%s at %s (%s)', $this->getPosition(), $this->getCompany(), $this->getLocation());
  }
}

其次,如果你想渲染一个特定的布局,你可以在 admingen 中使用 partial 作为列:

# apps/backend/modules/job/config/generator.yml
config:
  form:
    display:
      Content: [category_id, type, company, logo, url, position, location, description, how_to_apply, is_public, email]
      Admin:   [_generated_token, is_activated, expires_at]


// apps/backend/modules/job/templates/_generated_token.php
<div class="sf_admin_form_row">
  <label>Token</label>
  <?php echo $form->getObject()->getToken() ?>
</div>
于 2011-05-03T13:53:21.740 回答