gpt4 book ai didi

symfony1 - 撇号 CMS : Engine Creation

转载 作者:行者123 更新时间:2023-12-02 08:55:33 28 4
gpt4 key购买 nike

我正在尝试为撇号创建一个产品引擎。我在扩展“页面设置”表单时遇到问题,目前我想添加一个简单的文本区域来向页面添加概要 - 最终我想添加“产品”设置,但我需要先完成基础知识。

我创建了一个表单和一个设置部分,它显示良好并保存数据(在一点黑客的帮助下 - 可能不正确)。我遇到的问题是,当您编辑页面时,数据不会被拉回到表单中。老实说,我可能做了一些根本性错误的事情,但我缺乏 Symfony 经验。

我的表架构

ccProduct:
tableName: cc_product
actAs:
Timestampable: ~
columns:
page_id:
type: integer
notnull: true
synopsis:
type: text
relations:
Page:
class: aPage
local: page_id
foreign: id
type: one
onDelete: CASCADE

我的表单ccProductEngineForm.class.php

class ccProductEngineForm extends ccProductForm
{
public function __construct($object = null, $options = array(), $CSRFSecret = null)
{
// when editing the page the values are not show, this is an attempt to get it to work - it still doesn't :(
$page_id = sfContext::getInstance()->getRequest()->getParameter('id');
sfContext::getInstance()->getRequest()->setParameter('page_id', $page_id);

$ccProduct = Doctrine::getTable('ccProduct')->findOneByPageId($page_id);
if ($ccProduct) {
sfContext::getInstance()->getRequest()->setParameter('id', $ccProduct->getId());
}


// aPageForm object is passed in
parent::__construct(null, $options, $CSRFSecret); // construct normally
//$this->mergeForm(new aPageForm($object, $options, $CSRFSecret)); // merge the aPageForm - Nope, ignore it!?

}

public function setup() {
parent::setup();

$this->useFields(array('synopsis'));

$this->widgetSchema->setNameFormat('enginesettings[%s]');
$this->widgetSchema->setFormFormatterName('aPageSettings');
}

protected function doSave($con = null)
{
// page_id is missing! possible bug? BaseaActions.class.php ~ 520
$this->values['page_id'] = sfContext::getInstance()->getRequest()->getParameter('enginesettings[pageid]');

parent::doSave($con);
}

}

预先感谢您的帮助

编辑:

感谢您的回答,汤姆,我会尝试添加更多细节。

我知道页面对象被传递到引擎中,但我不确定如何处理它 - 请参阅我困惑的代码行:

//$this->mergeForm(new aPageForm($object, $options, $CSRFSecret)); // merge the aPageForm - Nope, ignore it!?

澄清一下,我的“产品”是一个使用 ccProduct 引擎的页面。我现在想向该页面添加额外的信息。那有意义吗?用你的话来说..

Are you trying to actually create a unique product that has its sole "home" on a product engine page? That's what subclassing ccProductForm would do

是的:)

编辑2:

按照 Tom 的第一个建议 ( Apostrophe CMS: Engine Creation ),我能够使用额外的字段扩展 aPage 表,并且引擎现在正在保存这些字段。

但是,标准 aPageTable::getPagesInfo 函数不会返回我保存的字段。我想我必须单独选择这些?

编辑3:

aPageTable::retrieveBySlug() 会完成这项工作:)

重访

我决定重新审视这个问题并尝试汤姆的第二种方法..

The other approach (if for whatever reason you don't want extra columns in aPage) is to keep your ccProduct table and fetch the relevant one

我设法让它工作,我的 ccProductEngine 表单构造函数现在看起来像这样..

class ccProductEngineForm extends ccProductForm
{
public function __construct($aPage = null, $options = array(), $CSRFSecret = null)
{
$page_id = $aPage->getId();

if ($page_id) {
$product = Doctrine_Core::getTable('ccProduct')->findOneByPage_id($page_id);
if ($product) {
$ccProduct = $product;
} else {
$ccProduct = new ccProduct();
}
}

parent::__construct($ccProduct, $options, $CSRFSecret);
}

我希望这对某人有帮助:)

最佳答案

要记住的主要事情是,您的引擎设置表单接收一个页面对象作为构造函数的第一个参数,并且您需要将您的数据与该页面对象相关联。通常引擎设置表单是 aPageForm 的子类,但并非必须如此。所需要做的就是以某种方式将产品对象与页面对象关联起来。根据您的目标,您可能需要一个在产品引擎页面和产品之间创建一对多关系的 refClass,以及一个用于操作这些关系的表单。

从你的代码中我很难猜测你真正想要做什么。您是否想真正创建一个独特的产品,在产品引擎页面上有其唯一的“家”?这就是 ccProductForm 子类化的作用。或者您只想从产品表中选择现有产品并将其与每个引擎页面关联?或者您想要选择一个或多个产品并将它们与引擎页面关联?

将东西塞进请求对象绝对不是正确的方法(:

请澄清,我可以进一步帮助您。

  • Tom Boutell,Apostrope 高级开发人员

关于symfony1 - 撇号 CMS : Engine Creation,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5218996/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com