Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to create something with extbase, but the error-message I get is not very helpful. I took the blog_example extension as a guide. A (maybe) important difference is: I don't have a database table because I want to write a custom domain repository that connects to an external servive through REST.

The actual error message (displayed above the plugin, not as an exception message):

An error occurred while trying to call Tx_MyExt_Controller_SubscriptionController->createAction()


Classes/Controller/SubscriptionController:
Stripped down to the important parts.

class Tx_MyExt_Controller_SubscriptionController extends Tx_Extbase_MVC_Controller_ActionController 
{
    /**
     * @var Tx_MyExt_Domain_Repository_SubscriberRepository
     */
    protected $subscriberRepository;


    /**
     * @return void
     */
    public function initializeAction()
    {
        $this->subscriberRepository = t3lib_div::makeInstance('Tx_MyExt_Domain_Repository_SubscriberRepository');
    }


    /**
     * @param Tx_MyExt_Domain_Model_Subscriber $subscriber
     * @dontvalidate $subscriber
     * @return  string      The rendered view
     */
    public function newAction(Tx_MyExt_Domain_Model_Subscriber $subscriber = null)
    {
            $this->view->assign('subscriber', $subscriber);
    }

    /**
     * @param Tx_MyExt_Domain_Model_Subscriber $subscriber
     * @return  string      The rendered view
     */
    public function createAction(Tx_MyExt_Domain_Model_Subscriber $subscriber)
    { }

}

Classes/Domain/Model/Subscriber

class Tx_MyExt_Domain_Model_Subscriber extends Tx_Extbase_DomainObject_AbstractEntity 
{
    /**
     * @var string
     * @dontvalidate
     */
    protected $email = '';



    /**
     * @param string $email
     * @return void
     */
    public function setEmail($email) 
    {
        $this->email = $email;
    }

    /**
     * @return string
     */
    public function getEmail() 
    {
        return $this->email;
    }
}

Resources/Private/Templates/Subscription/new

<f:form action="create" controller="Subscription" objectName="Subscriber" object="{subscriber}" method="post">
    <f:form.textfield property="email"></f:form.textfield>
    <f:form.submit value="submit"></f:form.submit>
</f:form>

Facts

  • Adding $subscriber = null removes the message. But $subscriber is null then
  • A var_dump($this->request->getArguments()); displays the form's fields
  • There is an index action, and it is also the first action defined in ext_localconf.php

The hints and solutions I found aren't working for me, so I hope someone can guide me into the right direction.

share|improve this question
Just to verify: have you got the getter and setter in your Subscriber model? – konsolenfreddy Feb 1 '12 at 10:59
yup. added setter/getter to the question – pduersteler Feb 1 '12 at 11:37

2 Answers

up vote 1 down vote accepted

classic case of "start over from scratch and it works, and if you compare it you have the same code, though".

I updated the code in the question, maybe it helps someone.

share|improve this answer
That means that the code you posted currently works? – Mateng May 15 at 17:43
yes, you just need to make sure that a corresponding TCA is present, beside valid ext_*.php files. – pduersteler May 15 at 20:18

just override the template method getErrorFlashMessage in yout controller to provide a custom error message...

/**
 * A template method for displaying custom error flash messages, or to
 * display no flash message at all on errors. Override this to customize
 * the flash message in your action controller.
 *
 * @return string|boolean The flash message or FALSE if no flash message should be set
 * @api
 */
protected function getErrorFlashMessage() {
    return 'An error occurred while trying to call ' . get_class($this) . '->' . $this->actionMethodName . '()';
}
share|improve this answer
the problem isn't that I want to get rid of the flash but to get rid of the error stopping the plugin to work. – pduersteler Apr 13 '12 at 21:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.