Move URL to SeoForm (SEO tab)

This commit is contained in:
touffies
2013-11-28 12:11:45 +01:00
parent 6447385605
commit 083f3bfa8c
2 changed files with 1 additions and 21 deletions

View File

@@ -33,7 +33,6 @@ class ProductUpdateEvent extends ProductCreateEvent
protected $description; protected $description;
protected $postscriptum; protected $postscriptum;
protected $url;
protected $parent; protected $parent;
public function __construct($product_id) public function __construct($product_id)
@@ -89,18 +88,6 @@ class ProductUpdateEvent extends ProductCreateEvent
return $this; return $this;
} }
public function getUrl()
{
return $this->url;
}
public function setUrl($url)
{
$this->url = $url;
return $this;
}
public function getParent() public function getParent()
{ {
return $this->parent; return $this->parent;

View File

@@ -24,7 +24,7 @@ namespace Thelia\Form;
use Symfony\Component\Validator\Constraints\GreaterThan; use Symfony\Component\Validator\Constraints\GreaterThan;
use Thelia\Core\Translation\Translator; use Thelia\Core\Translation\Translator;
use Symfony\Component\Validator\Constraints\NotBlank;
class ProductModificationForm extends ProductCreationForm class ProductModificationForm extends ProductCreationForm
{ {
@@ -39,17 +39,10 @@ class ProductModificationForm extends ProductCreationForm
"label" => Translator::getInstance()->trans("Prodcut ID *"), "label" => Translator::getInstance()->trans("Prodcut ID *"),
"label_attr" => array("for" => "product_id_field"), "label_attr" => array("for" => "product_id_field"),
"constraints" => array(new GreaterThan(array('value' => 0))) "constraints" => array(new GreaterThan(array('value' => 0)))
)) ))
->add("template_id", "integer", array( ->add("template_id", "integer", array(
"label" => Translator::getInstance()->trans("Product template"), "label" => Translator::getInstance()->trans("Product template"),
"label_attr" => array("for" => "product_template_field") "label_attr" => array("for" => "product_template_field")
))
->add("url", "text", array(
"label" => Translator::getInstance()->trans("Rewritten URL *"),
"constraints" => array(new NotBlank()),
"label_attr" => array("for" => "rewriten_url_field")
)) ))
; ;