当前位置: 首页>>代码示例>>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;未经允许,请勿转载。