Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bareos/bareos-webui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/zendframework/zend-view/src/Helper/Partial.php')
-rw-r--r--vendor/zendframework/zend-view/src/Helper/Partial.php95
1 files changed, 0 insertions, 95 deletions
diff --git a/vendor/zendframework/zend-view/src/Helper/Partial.php b/vendor/zendframework/zend-view/src/Helper/Partial.php
deleted file mode 100644
index 68ffe67..0000000
--- a/vendor/zendframework/zend-view/src/Helper/Partial.php
+++ /dev/null
@@ -1,95 +0,0 @@
-<?php
-/**
- * Zend Framework (http://framework.zend.com/)
- *
- * @link http://github.com/zendframework/zf2 for the canonical source repository
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
-
-namespace Zend\View\Helper;
-
-use Zend\View\Exception;
-use Zend\View\Model\ModelInterface;
-
-/**
- * Helper for rendering a template fragment in its own variable scope.
- */
-class Partial extends AbstractHelper
-{
- /**
- * Variable to which object will be assigned
- *
- * @var string
- */
- protected $objectKey;
-
- /**
- * Renders a template fragment within a variable scope distinct from the
- * calling View object. It proxies to view's render function
- *
- * @param string|ModelInterface $name Name of view script, or a view model
- * @param array|object $values Variables to populate in the view
- * @throws Exception\RuntimeException
- * @return string|Partial
- */
- public function __invoke($name = null, $values = null)
- {
- if (0 == func_num_args()) {
- return $this;
- }
-
- // If we were passed only a view model, just render it.
- if ($name instanceof ModelInterface) {
- return $this->getView()->render($name);
- }
-
- if (is_scalar($values)) {
- $values = array();
- } elseif ($values instanceof ModelInterface) {
- $values = $values->getVariables();
- } elseif (is_object($values)) {
- if (null !== ($objectKey = $this->getObjectKey())) {
- $values = array($objectKey => $values);
- } elseif (method_exists($values, 'toArray')) {
- $values = $values->toArray();
- } else {
- $values = get_object_vars($values);
- }
- }
-
- return $this->getView()->render($name, $values);
- }
-
- /**
- * Set object key
- *
- * @param string|null $key
- *
- * @return self
- */
- public function setObjectKey($key)
- {
- if (null === $key) {
- $this->objectKey = null;
- return $this;
- }
-
- $this->objectKey = (string) $key;
-
- return $this;
- }
-
- /**
- * Retrieve object key
- *
- * The objectKey is the variable to which an object in the iterator will be
- * assigned.
- *
- * @return null|string
- */
- public function getObjectKey()
- {
- return $this->objectKey;
- }
-}