Jump to content

christophermaeuer

Members
  • Posts

    5
  • Joined

  • Last visited

christophermaeuer's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Okay, problem fixed: The questionmark appeared because I already called fetch() and the result was null because I had to call fetchAll(). Thank you
  2. Hello together, I a trying to build a SQL query: SELECT * FROM `newsletters_settings` WHERE `newsletters_settings`.`key` = 'plugin_id'; Therefor I use this code: $return = $this->Record-> select()-> from("newsletters_settings")-> where("newsletters_settings.key", "=", "plugin_id")-> fetch(); But the result is null, and a var_dump shows the following: object(PDOStatement)#97 (1) { ["queryString"]=> string(75) "SELECT * FROM `newsletters_settings` WHERE `newsletters_settings`.`key` = ?" } What am I doing wrong? Thanks in advance, Christopher
  3. Oh well, I fixed the problem. The parent controller of this AdminMain Controller also missed the parent::preAction(); Now everything works fine. Thank you very much for your help! Greets, Christopher
  4. Hi Tyson, at first thank you very much for your reply. I added the missing functions as follows: class AdminMain extends NewsletterController { public function preAction() { parent::preAction(); } public function index() { $this->view->setView(null, "Newsletter.default"); return $this->partial("admin_main"); } } But this does not solve my problem... Greets, Christopher
  5. Dear Ladies and Gentlemen, I am new to the Blesta Plugin system, but I made it so far that my plugin shows a link in the nav_primary_staff: http://puu.sh/aPcEW/48bc6ec839.png (see "Newsletter") When I click on this link the index() function of my admin_main.php is called: http://puu.sh/aPcIw/f60d60bd06.png (this will be rendered) But as you can see there is no navigation (to see the difference: http://puu.sh/aPcOJ/06417b7c2d.png) This code is in my admin_main.php (controller): class AdminMain extends NewsletterController { public function index() { $this->view->setView(null, "Newsletter.default"); return $this->partial("admin_main"); } } This code is in my admin_main.pdt (view): test I hope you can help me! Greets, Christopher
×
×
  • Create New...