View Single Post
  #1  
Old 03-15-2018, 08:03 AM
 
Soptareanu Alex Soptareanu Alex is offline
 

Member
  
Join Date: Sep 2016
Posts: 24
 

Default New field in Adress Fields

Hello I need to add a custom field in Adress Field table. I decorate the
\XLite\Model\AddressField in order to add this new property in AddressField entity and now i'm working in ItemsList Area. I want to be able to modify the value of this property via ItemsList Table.
This is my controller, decorated the original AddressFields :
namespace XLite\Module\Fdmteam\ChExtrafields\Controller;

/**
* Address fields controller
*/
class AddressFields extends \XLite\Controller\Admin\AddressFields implements \XLite\Base\IDecorator
{
/**
* Return the current page title (for the content area)
*
* @return string
*/
public function getTitle()
{
return static::t('Address Fields');
}

protected function doNoAction()
{
// XLite\Module\Fdmteam\ChExtrafields\Model
$_POST['debugg'] = 'Hello from my controller';
}

protected function doActionUpdate()
{
$list = new \XLite\Module\Fdmteam\ChExtrafields\View\ItemsList \Model\Address\Fieldss ;

$list->processQuick();
}
}

The problem is that didn't work make the update nor insert a new field.
Attached Thumbnails
Click image for larger version

Name:	Adress Field.PNG
Views:	401
Size:	21.4 KB
ID:	5120  
__________________
alex
Reply With Quote