Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 946763
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T22:58:23+00:00 2026-05-15T22:58:23+00:00

i have created my own Zend_Form class currently just to add some helper functions

  • 0

i have created my own Zend_Form class currently just to add some helper functions and setdefault decorators.

now what i want to do is add some defaults (setMethod('post')) and add some elements (if u know the honeypot method to prevent spam bots.) how do i do it? in the __construct()?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T22:58:24+00:00Added an answer on May 15, 2026 at 10:58 pm

    Overwrite the contructor should be fine.

    class Your_Form extends Zend_Form
    {
        public function __construct($options = null)
        {
            $this->setMethod('POST');
            $this->addElement('hidden', 'hash', array('ignore' => true));
            parent::__construct($options);
        }
    

    So your other Forms can extend Your_Form and call init(), so it stays consistent.

    class Model_Form_Login extends Your_Form
    {
        public function init()
        {
             $this->addElement('input', 'username');
             ...
    

    If you overwrite the init()-Method you don’t have to call the parent::__construct()…

    class Your_Form extends Zend_Form
    {
        public function init()
        {
            $this->setMethod('POST');
            $this->addElement('hidden', 'hash', array('ignore' => true));
    
        }
    

    … but all your extending Forms have to call parent::init() like so

    class Model_Form_Login extends Your_Form
    {
        public function init()
        {
             $this->addElement('input', 'username');
             ...
             parent::init();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have create my own NSOpenGLView class, right now the data that i want
I have created my own custom workflow (for now this is just adhoc workflow
I have created my own java library but now I want to create my
I have created my own Attached Property like this: public static class LabelExtension {
I have created my own button class called custom_btn. I created it on the
I have created blank Asp.Net-MVC 3 web application and want to write my own
I have created my own Authorize attribute called Authorise... Imports System.Security.Principal <AttributeUsage(AttributeTargets.Method Or AttributeTargets.[Class],
I created my own library with path: library/Mylib . I have a class in
I have created my own job class by extending the default class added couple
I want to use a list view and I have created my own layout

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.