Viewedit extend not applied to QuickCreate

Hello,
i’m coding to extend the ViewEdit class…

class LeadsViewEdit extends ViewEdit

All works well except for QuickCreate that does not inherit this changes.

I’ve put:

<?php require_once('include/MVC/View/views/view.edit.php'); if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); class LeadsViewEdit extends ViewEdit { public function __construct() { parent::ViewEdit(); $this->useForSubpanel = true; $this->useModuleQuickCreateTemplate = true; } function display(){ etc.... without success.... Anything wrong or what else? Thank you