Pages

Wednesday 18 July 2012

Sitemap

  • Zend Interview Questions And Answers (1)
    • Zend Interview Questions And Answers
      Is Zend Framework a component library or a framework? ZF is both. Zend Framework provides all the components required for most web applications in a single distribution. But Zend Framework components are also loosely coupled, making it easy to use just a few components in a web application- even alo...
       
  • Zend Dom Query (1)
    • Zend Dom Query Examples
          $htmlData ='    <h3>      <img src="wow/img.jpg" /><a href="http://wow.com">wow link</a>     </h3>    <h3>      <img src="wow/img.jpg" ><a href="http://wow.com">wow link2<...
       
  • Zend Acl (1)
    • Zend_ACL
      Zend_Acl provides lightweight and flexible access control list (ACL) functionality and privileges management. In general, an application may utilize such functionality to control access to certain protected objects by other requesting objects.Resource creating a Resource is very simple. Zend_Ac...
       
  • Zend_Form (2)
    • Create Form & Form Elements
      //create a form object$form = new Zend_Form$form->setAction('/resource/process')     ->setMethod('post');$form->setAttrib('id', 'login');?>//Form support Following elementsbutton,checkbox (one/many),hidden,image,password,radio,reset,select (single select/many select),submi...
       
    • What Is Zend_Form
      It uses to create a form in zend framework. In this each input/select/radio/checkbox known as element.Following are the zend form features.·         Filtering and validation·         Ordering·    &...
       
  • Zend Framework Security (2)
    • ZF Security Escaping For Output
      $this->escape($foo) in view files...
       
    • Zend Framework Central Authentication
      Zend Framework Central AuthenticationZend Framework  follow MVC Design with Dispatcher.Auth / ACL ImplementValidate & Filter the URL with using dispatcherclass FilterPlugin extends Zend_Controller_Plugin_Abstract{ public function preDispatch(Zend_Controller_Request_Abstract $request)&n...
       
  • MVC (7)
    • Zend Layout
      A website have different pages but have a page where all the footer/header/left/right section is included know as template/layout. Each page is called from that layout. A site may have one or more layout depend on website.Automate selection and rendering of layouts. Provide different scope for layo...
       
    • Zend_Controller
      Zend_Controller is the heart of Zend Framework's MVC system. Zend_Controller_Front implements a "Front Controller" pattern, in which all requests are intercepted by the front controller and dispatched to individual Action Controllers based on the URL requested.Zend_Controller_Front also implements t...
       
    • Zend-action-helper
      A helper can be initialized in several different ways, based on your needs as well as the functionality of that helper. The helper broker is stored as the $_helper member of Zend_Controller_Action; use the broker to retrieve or call on helpers. Some methods for doing so include: Following are the 3 ...
       
    • Bootstrap
      Bootstrap: In bootstrap you can setting up the database, configuring your view and view helpers, configuring your layouts, registering plugins, registering action helpers, cron job & service srcipt./** Include Bootstrap file in public/index.php */require_once 'Zend/Application.ph...
       
    • Design Patern
      Design Patern: It a formal way of documenting a solution to a problem.Zend Famework mainly use following Patterns.Singleton Pattern: It is a design pattern that restricts the instantiation of a class to one object.  Example: class Database { private static $_singleton; private $_connect...
       
    • Components
      Zend_AclProvides lightweight and flexible access control list (ACL) functionality and privileges management.Role: It is an object that may request to access the Resource.Resource: Object which access is controller.e.g. Driver request to access the car. Here driver is Role & Car is resource. ...
       
    • Model View Controller Architecture
      MVC Diagram In MVC pattern, we differentiate our logic(controller), Mysql(model) and html(view).View: It have all the Html parts of the page. Here we use the variables which we have set in controllers.Model: MYSQL queries parts of the page, we make an object of the model in controller & cal...
       
  • Zend Authentication And Authorization (1)
    • Zend Auth
      Zend_AuthZend_Auth is concerned only with authentication and not with authorization. Authentication is loosely defined as determining whether an entity actually is allowed or not....
       
  • Site Map (1)
    • Sitemap
      Loading... @import url("http://www.google.com/uds/solutions/dynamicfeed/gfdynamicfeedcontrol.css"); function LoadDynamicFeedControl() { var feeds = [ {title: 'Zend Framework Certification', url: 'http://zend-framework-certification.blogspot.com/rss.xml?redirect=false&start-index=1&max-results=999'...
       

No comments:

Post a Comment

Please add comments only related to zend framework certification.