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

  • SEARCH
  • Home
  • 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 8470165
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T16:26:29+00:00 2026-06-10T16:26:29+00:00

I am using Zend Framework in my project. I want to add a description/note

  • 0

I am using Zend Framework in my project. I want to add a description/note to my forms, like

fields marked by * are mandatory

But i didn’t found how to add a description to a form and how to use it with decorators.

Any help will be highly appreciated. Thanks.

  • 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-06-10T16:26:31+00:00Added an answer on June 10, 2026 at 4:26 pm

    There are two options:

    • Use a from decorator or
    • Extend Zend_Form_Element to create a custom
      element

    I would go with the latter, since it is very common to add parts of raw html code to forms not only before elements or after, but among them also.

    You should do something like this:

    class My_Form_Element_Raw extends Zend_Form_Element
    {
        protected $raw_html;
        public function setRawHtml($value)
        {
            $this->raw_html = $value;
            return $this;
        }
        public function getRawHtml()
        {
            return $this->raw_html;
        }
        public function render()
        {
            // you can use decorators here yourself if you want, or wrap html in container tags
            return $this->raw_html;
        }
    }
    
    $form = new Zend_Form();
    // add elements
    $form->addElement(
        new My_Form_Element_Raw(
            'my_raw_element', 
            array('raw_html' => '<p class="highlight">fields marked by * are mandatory</p>')
        )
    );
    echo $form->render();
    

    When extending Zend_Form_Element you dont need to overide setOption/s, getOption/s methods.
    Zend internally uses set* and get* and protected properties to detect element options like in this case protected $raw_html; and public function setRawHtml($value) and public function getRawHtml()
    Also naming your property $raw_html will accept both options of ‘raw_html’ and ‘rawHtml’ respectively

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm working on a Zend Framework project, using the JSON configuration. I want to
I have a Zend Framework project using version 1.10.8 with Doctrine 1.2.4.I use Zend_Auth
I'm actually using Doctrine2 within a Zend Framework project. I'm build an API to
I was looking at Zend_Paginator in Zend Framework project using MVC, and it looks
I'm trying to create a Zend Framework project using PHP 5.3.2 and Zend Framework
I started working on a project in the mid. We are using Zend Framework,
I'm working on a project that is currently using the Zend Framework 1.7.6, however
I am using zend framework on windows. I want to implement ajax in my
Hi I want to parse an excel file using zend framework. I went to
I'm using Zend Framework for some projects and want to build up PHPUnit test

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.