當前位置: 首頁>>代碼示例>>PHP>>正文


PHP sfWebResponse::initialize方法代碼示例

本文整理匯總了PHP中sfWebResponse::initialize方法的典型用法代碼示例。如果您正苦於以下問題:PHP sfWebResponse::initialize方法的具體用法?PHP sfWebResponse::initialize怎麽用?PHP sfWebResponse::initialize使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在sfWebResponse的用法示例。


在下文中一共展示了sfWebResponse::initialize方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: initialize

 public function initialize(sfEventDispatcher $dispatcher, $options = array())
 {
     parent::initialize($dispatcher, $options);
     $this->javascriptConfig = array();
     $this->dispatcher->connect('user.change_culture', array($this, 'listenToChangeCultureEvent'));
     $this->dispatcher->connect('user.change_theme', array($this, 'listenToChangeThemeEvent'));
     $this->dispatcher->connect('user.remember_me', array($this, 'listenToRememberMeEvent'));
     $this->dispatcher->connect('user.sign_out', array($this, 'listenToSignOutEvent'));
 }
開發者ID:jdart,項目名稱:diem,代碼行數:9,代碼來源:dmWebResponse.php

示例2: getResponse

 public function getResponse()
 {
     static $response;
     if (!$response) {
         $response = new sfWebResponse();
         $response->initialize($this);
     }
     return $response;
 }
開發者ID:valerio-bozzolan,項目名稱:openparlamento,代碼行數:9,代碼來源:sfContextMock.class.php

示例3: initialize

 /**
  * Initialize
  * 
  * @param   sfEventDispatcher   $dispatcher
  * @param   array               $options    Response options [optional]
  * @return  void
  */
 public function initialize(sfEventDispatcher $dispatcher, $options = array())
 {
     parent::initialize($dispatcher, $options);
 }
開發者ID:relo-san,項目名稱:dinSymfonyExtraPlugin,代碼行數:11,代碼來源:dinWebResponse.php

示例4: myRequest

        $response->addStylesheet('last1', 'last');
        $response->addStylesheet('first1', 'first');
        $response->addStylesheet('middle');
        $response->addStylesheet('last2', 'last');
        $response->addStylesheet('multiple');
        $response->addStylesheet('multiple');
        $response->addStylesheet('first2', 'first');
        $response->addStylesheet('multiple', 'last');
        $filterChain->execute();
        // sfCommmonFilter has executed all its code
    }
}
$context = sfContext::getInstance();
$context->request = new myRequest();
$response = new sfWebResponse();
$response->initialize($context);
$context->response = $response;
$selector = execute_filter_chain($context, $t);
check_javascripts_included($t, $selector);
check_stylesheets_included($t, $selector);
// test disabling javascript and stylesheet automatic inclusion
$response->setParameter('stylesheets_included', true, 'symfony/view/asset');
$response->setParameter('javascripts_included', true, 'symfony/view/asset');
$selector = execute_filter_chain($context, $t);
$t->is($selector->getElements('head script'), array(), '->execute() does not add javascripts if you used get_javascripts() helper');
$t->is($selector->getElements('head link'), array(), '->execute() does not add stylesheets if you used get_stylesheets() helper');
$response->setParameter('stylesheets_included', true, 'symfony/view/asset');
$response->setParameter('javascripts_included', false, 'symfony/view/asset');
$selector = execute_filter_chain($context, $t);
check_javascripts_included($t, $selector);
$t->is($selector->getElements('head link'), array(), '->execute() does not add javascripts if you used get_javascripts() helper');
開發者ID:valerio-bozzolan,項目名稱:openparlamento,代碼行數:31,代碼來源:sfCommonFilterTest.php

示例5: initialize

 /**
  * Initializes this opWebResponse.
  *
  *  * charset:           The charset to use (utf-8 by default)
  *  * content_type:      The content type (text/html by default)
  *  * send_http_headers: Whether to send HTTP headers or not (true by default)
  *  * http_protocol:     The HTTP protocol to use for the response (HTTP/1.0 by default)
  *
  * @param  sfEventDispatcher $dispatcher  An sfEventDispatcher instance
  * @param  array             $options     An array of options
  *
  * @return bool true, if initialization completes successfully, otherwise false
  *
  * @throws <b>sfInitializationException</b> If an error occurs while initializing this sfResponse
  *
  * @see sfWebResponse->initialize()
  */
 public function initialize(sfEventDispatcher $dispatcher, $options = array())
 {
     parent::initialize($dispatcher, $options);
     $this->smtJavascripts = array_combine($this->positions, array_fill(0, count($this->positions), array()));
     $this->smtStylesheets = array_combine($this->positions, array_fill(0, count($this->positions), array()));
 }
開發者ID:te-koyama,項目名稱:openpne,代碼行數:23,代碼來源:opWebResponse.class.php


注:本文中的sfWebResponse::initialize方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。