Exceptions

Key "object" for sequence/mapping with keys "_type, _id, entriesCount, activeEntryId, view_order, publishDate, rank" does not exist in @ContentManagement/item.html.twig at line 2.

Exception

Twig\Error\ RuntimeError

Show exception properties
Twig\Error\RuntimeError {#13187
  -lineno: 2
  -rawMessage: "Key "object" for sequence/mapping with keys "_type, _id, entriesCount, activeEntryId, view_order, publishDate, rank" does not exist."
  -source: Twig\Source {#12675
    -code: """
      {% if item._type == 'entry' %}\n
          {% set entry = item.object %}\n
      \n
          {% if entry.properties.is_pinned is defined and entry.properties.is_pinned == 1 %}\n
              {% set pinned_class = 'pinned ' %}\n
          {% else %}\n
              {% set pinned_class = '' %}\n
          {% endif %}\n
      \n
          <div class="{{ pinned_class }}col-md-12 p-all-0 posts-list color-nw color-mw" data-id="{{ item.activeEntryId }}" data-rank="{{ item.rank }}">\n
              <div class="col-sm-4 p-t-b-15">\n
                  {% if entry.type.name in ['book', 'manuscript', 'periodical', 'thesis'] %}\n
                      <a href="{{ path('entry_view', { 'type_name': entry.type.name, 'local_id': entry.localId, 'slug': entry.title|slug }) }}" class="book-cover" style="background-image: url('{{ get_image(entry) }}')">\n
                          <img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" data-src="{{ get_image(entry) }}" class="img-responsive" alt="{{ entry.content.image_description is defined ? entry.content.image_description }}">\n
                      </a>\n
                  {% else %}\n
                      <a href="{{ path('entry_view', { 'type_name': entry.type.name, 'local_id': entry.localId, 'slug': entry.title|slug }) }}">\n
                          <img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" data-src="{{ get_image(entry, 270) }}" class="img-responsive" alt="{{ entry.content.image_description is defined ? entry.content.image_description }}">\n
                      </a>\n
                  {% endif %}\n
              </div>\n
              <div class="col-sm-8 p-t-b-15">\n
                  <div class="txt-cont">\n
                      <a href="{{ path('entry_view', { 'type_name': entry.type.name, 'local_id': entry.localId, 'slug': entry.title|slug }) }}"><h3>{{ entry.title }}</h3></a>\n
                      <p>{{ entry.type.name == 'consultation' ? entry.content.question : entry.summary }}</p>\n
                      <div class="col-md-8 p-all-0">\n
                          {% if show_author %}\n
                              {% set author = entry.authors|length ? entry.authors|first : null %}\n
                              {% if author %}\n
                                  <a href="{{ path('author', {'id': author.id, 'slug': author.name|slug}) }}"> <span> <i class="fa fa-user"></i> {{ author.name }} </span> </a>\n
                              {% endif %}\n
                          {% else %}\n
                              <a href="{{ path('entries_home', {'list_name': entry.type.listName}) }}"> <span> <i class="fa fa-tag"></i> {{ ('content_type.'~ entry.type.name ~'.list_name')|trans }} </span> </a>\n
                          {% endif %}\n
                      </div>\n
                      <div class="col-md-4 p-all-0">\n
                          <span> <i class="fa fa-calendar"></i> {{ entry.publishedAt|hijri }} </span>\n
                          <span> <i class="fa fa-calendar"></i> {{ entry.publishedAt|format_datetime('long', 'none', 'ar') }}</span>\n
                      </div>\n
                  </div>\n
              </div>\n
          </div> <!-- End -->\n
      {% elseif item._type == 'collection' %}\n
          {% if item.lastAdded  %}\n
              {% set in_author = author is defined ? true : false %}\n
              {% for entry in item.lastAdded %}\n
                  {% if (in_author == false or (in_author == true and entry.authors.contains(author))) %}\n
                      <div class="col-md-12 p-all-0 posts-list color-nw color-mw" data-id="{{ item.activeEntryId }}" data-rank="{{ item.rank }}">\n
                          <div class="col-sm-4 p-t-b-15">\n
                              {% if entry.type.name in ['book', 'manuscript', 'periodical', 'thesis'] %}\n
                                  <a href="{{ path('entry_view', { 'type_name': entry.type.name, 'local_id': entry.localId, 'slug': entry.title|slug }) }}" class="book-cover" style="background-image: url('{{ get_image(entry) }}')">\n
                                      <img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" data-src="{{ get_image(entry) }}" class="img-responsive" alt="{{ entry.content.image_description is defined ? entry.content.image_description }}">\n
                                  </a>\n
                              {% else %}\n
                                  <a href="{{ path('entry_view', { 'type_name': entry.type.name, 'local_id': entry.localId, 'slug': entry.title|slug }) }}">\n
                                      <img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" data-src="{{ get_image(entry, 270, 150) }}" class="img-responsive" alt="{{ entry.content.image_description is defined ? entry.content.image_description }}">\n
                                  </a>\n
                              {% endif %}\n
                          </div>\n
                          <div class="col-sm-8 p-t-b-15">\n
                              <div class="txt-cont">\n
                                  <a href="{{ path('entry_view', { 'type_name': entry.type.name, 'local_id': entry.localId, 'slug': entry.title|slug }) }}"><h3>{{ entry.title }}</h3></a>\n
                                  <p>{{ entry.type.name == 'consultation' ? entry.content.question : entry.summary }}</p>\n
                                  <div class="col-md-8 p-all-0">\n
                                      {% if show_author %}\n
                                          {% set author = entry.authors|length ? entry.authors|first : null %}\n
                                          {% if author %}\n
                                              <a href="{{ path('author', {'id': author.id, 'slug': author.name|slug}) }}"> <span> <i class="fa fa-user"></i> {{ author.name }} </span> </a>\n
                                          {% endif %}\n
                                      {% else %}\n
                                          <a href="{{ path('entries_home', {'list_name': entry.type.listName}) }}"> <span> <i class="fa fa-tag"></i> {{ ('content_type.'~ entry.type.name ~'.list_name')|trans }} </span> </a>\n
                                      {% endif %}\n
                                  </div>\n
                                  <div class="col-md-4 p-all-0"> <span> <i class="fa fa-calendar"></i> {{ entry.publishedAt|hijri }} </span> </div>\n
                              </div>\n
                          </div>\n
                      </div> <!-- End -->\n
                  {% endif %}\n
              {% endfor %}\n
          {% endif %}\n
      {% endif %}\n
      """
    -name: "@ContentManagement/item.html.twig"
    -path: "/var/www/html/tafsir/templates/bundles/ContentManagementBundle/item.html.twig"
  }
  -phpFile: "/var/www/html/tafsir/vendor/twig/twig/src/Extension/CoreExtension.php"
  -phpLine: 1739
}
  1. {% if item._type == 'entry' %}
  2. {% set entry = item.object %}
  3. {% if entry.properties.is_pinned is defined and entry.properties.is_pinned == 1 %}
  4. {% set pinned_class = 'pinned ' %}
  5. {% else %}
  6. {% set pinned_class = '' %}
  1. // line 1
  2. if ((CoreExtension::getAttribute($this->env, $this->source, (isset($context["item"]) || array_key_exists("item", $context) ? $context["item"] : (function () { throw new RuntimeError('Variable "item" does not exist.', 1, $this->source); })()), "_type", [], "any", false, false, false, 1) == "entry")) {
  3. // line 2
  4. yield " ";
  5. $context["entry"] = CoreExtension::getAttribute($this->env, $this->source, (isset($context["item"]) || array_key_exists("item", $context) ? $context["item"] : (function () { throw new RuntimeError('Variable "item" does not exist.', 2, $this->source); })()), "object", [], "any", false, false, false, 2);
  6. // line 3
  7. yield "
  8. ";
  9. // line 4
  10. if ((CoreExtension::getAttribute($this->env, $this->source, CoreExtension::getAttribute($this->env, $this->source, ($context["entry"] ?? null), "properties", [], "any", false, true, false, 4), "is_pinned", [], "any", true, true, false, 4) && (CoreExtension::getAttribute($this->env, $this->source, CoreExtension::getAttribute($this->env, $this->source, (isset($context["entry"]) || array_key_exists("entry", $context) ? $context["entry"] : (function () { throw new RuntimeError('Variable "entry" does not exist.', 4, $this->source); })()), "properties", [], "any", false, false, false, 4), "is_pinned", [], "any", false, false, false, 4) == 1))) {
in vendor/twig/twig/src/Template.php -> doDisplay (line 402)
  1. {
  2. $context += $this->env->getGlobals();
  3. $blocks = array_merge($this->blocks, $blocks);
  4. try {
  5. yield from $this->doDisplay($context, $blocks);
  6. } catch (Error $e) {
  7. if (!$e->getSourceContext()) {
  8. $e->setSourceContext($this->getSourceContext());
  9. }
  1. return $this->blocks;
  2. }
  3. public function display(array $context, array $blocks = []): void
  4. {
  5. foreach ($this->yield($context, $blocks) as $data) {
  6. echo $data;
  7. }
  8. }
  9. public function render(array $context): string
in vendor/twig/twig/src/Template.php -> display (line 373)
  1. ob_start();
  2. } else {
  3. ob_start(function () { return ''; });
  4. }
  5. try {
  6. $this->display($context);
  7. } catch (\Throwable $e) {
  8. while (ob_get_level() > $level) {
  9. ob_end_clean();
  10. }
  1. yield from $this->template->yieldBlock($name, $context);
  2. }
  3. public function render(array $context = []): string
  4. {
  5. return $this->template->render($context);
  6. }
  7. /**
  8. * @return void
  9. */
  1. if ($isSandboxed) {
  2. $loaded->unwrap()->checkSecurity();
  3. }
  4. return $loaded->render($variables);
  5. } finally {
  6. if ($isSandboxed && !$alreadySandboxed) {
  7. $sandbox->disableSandbox();
  8. }
  9. }
  1. $context['loop']['last'] = 1 === $length;
  2. }
  3. foreach ($context['_seq'] as $context["_key"] => $context["item"]) {
  4. // line 12
  5. yield " ";
  6. yield Twig\Extension\CoreExtension::include($this->env, $context, "@ContentManagement/item.html.twig", ["item" => $context["item"], "show_author" => (isset($context["show_author"]) || array_key_exists("show_author", $context) ? $context["show_author"] : (function () { throw new RuntimeError('Variable "show_author" does not exist.', 12, $this->source); })())]);
  7. yield "
  8. ";
  9. ++$context['loop']['index0'];
  10. ++$context['loop']['index'];
  11. $context['loop']['first'] = false;
in vendor/twig/twig/src/Template.php -> block_list_page (line 446)
  1. throw new \LogicException('A block must be a method on a \Twig\Template instance.');
  2. }
  3. if (null !== $template) {
  4. try {
  5. yield from $template->$block($context, $blocks);
  6. } catch (Error $e) {
  7. if (!$e->getSourceContext()) {
  8. $e->setSourceContext($template->getSourceContext());
  9. }
  1. <div class=\"entries-list\">
  2. ";
  3. }
  4. // line 65
  5. yield " ";
  6. yield from $this->unwrap()->yieldBlock("list_page", $context, $blocks);
  7. yield "
  8. ";
  9. // line 66
  10. if ((($tmp = !CoreExtension::getAttribute($this->env, $this->source, CoreExtension::getAttribute($this->env, $this->source, (isset($context["app"]) || array_key_exists("app", $context) ? $context["app"] : (function () { throw new RuntimeError('Variable "app" does not exist.', 66, $this->source); })()), "request", [], "any", false, false, false, 66), "xmlHttpRequest", [], "any", false, false, false, 66)) && $tmp instanceof Markup ? (string) $tmp : $tmp)) {
  11. // line 67
in vendor/twig/twig/src/Template.php -> block_cms_content (line 446)
  1. throw new \LogicException('A block must be a method on a \Twig\Template instance.');
  2. }
  3. if (null !== $template) {
  4. try {
  5. yield from $template->$block($context, $blocks);
  6. } catch (Error $e) {
  7. if (!$e->getSourceContext()) {
  8. $e->setSourceContext($template->getSourceContext());
  9. }
  1. $__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  2. $__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "content"));
  3. // line 4
  4. yield " ";
  5. yield from $this->unwrap()->yieldBlock('cms_content', $context, $blocks);
  6. $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
  7. $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
in vendor/twig/twig/src/Template.php -> block_content (line 446)
  1. throw new \LogicException('A block must be a method on a \Twig\Template instance.');
  2. }
  3. if (null !== $template) {
  4. try {
  5. yield from $template->$block($context, $blocks);
  6. } catch (Error $e) {
  7. if (!$e->getSourceContext()) {
  8. $e->setSourceContext($template->getSourceContext());
  9. }
  1. yield from $this->unwrap()->yieldBlock('page_content_header', $context, $blocks);
  2. // line 174
  3. yield " </div>
  4. ";
  5. // line 175
  6. yield from $this->unwrap()->yieldBlock('content', $context, $blocks);
  7. // line 176
  8. yield " </div>
  9. <div class=\"col-md-3\">
  10. <div class=\"sidebar\">
  11. <aside class=\"sidebar__inner\">
in vendor/twig/twig/src/Template.php -> block_page_content (line 446)
  1. throw new \LogicException('A block must be a method on a \Twig\Template instance.');
  2. }
  3. if (null !== $template) {
  4. try {
  5. yield from $template->$block($context, $blocks);
  6. } catch (Error $e) {
  7. if (!$e->getSourceContext()) {
  8. $e->setSourceContext($template->getSourceContext());
  9. }
  1. </header>
  2. ";
  3. // line 156
  4. yield from $this->unwrap()->yieldBlock('page_content', $context, $blocks);
  5. // line 188
  6. yield "
  7. <footer>
  8. <div class=\"container\">
  9. <div class=\"row\">
in vendor/twig/twig/src/Template.php -> doDisplay (line 402)
  1. {
  2. $context += $this->env->getGlobals();
  3. $blocks = array_merge($this->blocks, $blocks);
  4. try {
  5. yield from $this->doDisplay($context, $blocks);
  6. } catch (Error $e) {
  7. if (!$e->getSourceContext()) {
  8. $e->setSourceContext($this->getSourceContext());
  9. }
  1. $__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  2. $__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "commons/base.html.twig"));
  3. // line 3
  4. yield from $this->getParent($context)->unwrap()->yield($context, array_merge($this->blocks, $blocks));
  5. $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  6. $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in vendor/twig/twig/src/Template.php -> doDisplay (line 402)
  1. {
  2. $context += $this->env->getGlobals();
  3. $blocks = array_merge($this->blocks, $blocks);
  4. try {
  5. yield from $this->doDisplay($context, $blocks);
  6. } catch (Error $e) {
  7. if (!$e->getSourceContext()) {
  8. $e->setSourceContext($this->getSourceContext());
  9. }
  1. $__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  2. $__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "@ContentManagement/layout.html.twig"));
  3. $this->parent = $this->load("commons/base.html.twig", 1);
  4. yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks));
  5. $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  6. $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in vendor/twig/twig/src/Template.php -> doDisplay (line 402)
  1. {
  2. $context += $this->env->getGlobals();
  3. $blocks = array_merge($this->blocks, $blocks);
  4. try {
  5. yield from $this->doDisplay($context, $blocks);
  6. } catch (Error $e) {
  7. if (!$e->getSourceContext()) {
  8. $e->setSourceContext($this->getSourceContext());
  9. }
  1. // line 73
  2. $context["page"] = $this->extensions['Rawafed\PageComposerBundle\Twig\PageComposerExtension']->setPage("صفحة المؤلف");
  3. // line 1
  4. $this->parent = $this->load("@ContentManagement/layout.html.twig", 1);
  5. yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks));
  6. $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  7. $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in vendor/twig/twig/src/Template.php -> doDisplay (line 402)
  1. {
  2. $context += $this->env->getGlobals();
  3. $blocks = array_merge($this->blocks, $blocks);
  4. try {
  5. yield from $this->doDisplay($context, $blocks);
  6. } catch (Error $e) {
  7. if (!$e->getSourceContext()) {
  8. $e->setSourceContext($this->getSourceContext());
  9. }
  1. return $this->blocks;
  2. }
  3. public function display(array $context, array $blocks = []): void
  4. {
  5. foreach ($this->yield($context, $blocks) as $data) {
  6. echo $data;
  7. }
  8. }
  9. public function render(array $context): string
in vendor/twig/twig/src/Template.php -> display (line 373)
  1. ob_start();
  2. } else {
  3. ob_start(function () { return ''; });
  4. }
  5. try {
  6. $this->display($context);
  7. } catch (\Throwable $e) {
  8. while (ob_get_level() > $level) {
  9. ob_end_clean();
  10. }
  1. yield from $this->template->yieldBlock($name, $context);
  2. }
  3. public function render(array $context = []): string
  4. {
  5. return $this->template->render($context);
  6. }
  7. /**
  8. * @return void
  9. */
  1. * @throws SyntaxError When an error occurred during compilation
  2. * @throws RuntimeError When an error occurred during rendering
  3. */
  4. public function render($name, array $context = []): string
  5. {
  6. return $this->load($name)->render($context);
  7. }
  8. /**
  9. * Displays a template.
  10. *
  1. if (null !== $block) {
  2. return $this->container->get('twig')->load($view)->renderBlock($block, $parameters);
  3. }
  4. return $this->container->get('twig')->render($view, $parameters);
  5. }
  6. private function doRender(string $view, ?string $block, array $parameters, ?Response $response, string $method): Response
  7. {
  8. $content = $this->doRenderView($view, $block, $parameters, $method);
  1. return $this->container->get('twig')->render($view, $parameters);
  2. }
  3. private function doRender(string $view, ?string $block, array $parameters, ?Response $response, string $method): Response
  4. {
  5. $content = $this->doRenderView($view, $block, $parameters, $method);
  6. $response ??= new Response();
  7. if (200 === $response->getStatusCode()) {
  8. foreach ($parameters as $v) {
  9. if ($v instanceof FormInterface && $v->isSubmitted() && !$v->isValid()) {
  1. * If an invalid form is found in the list of parameters, a 422 status code is returned.
  2. * Forms found in parameters are auto-cast to form views.
  3. */
  4. protected function render(string $view, array $parameters = [], ?Response $response = null): Response
  5. {
  6. return $this->doRender($view, null, $parameters, $response, __FUNCTION__);
  7. }
  8. /**
  9. * Renders a block in a view.
  10. *
  1. if ($request->isXmlHttpRequest() && $request->query->get('json')) {
  2. return $this->getJsonResponse($mergedList);
  3. }
  4. return $this->render('@ContentManagement/Entry/author.html.twig', [
  5. 'title' => $pageTitle,
  6. 'author' => $author,
  7. 'content_type' => $contentType,
  8. 'list' => $mergedList,
  9. 'isLastPage' => $this->isLastPage($mergedList, $count),
in vendor/symfony/http-kernel/HttpKernel.php -> authorAction (line 181)
  1. $this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
  2. $controller = $event->getController();
  3. $arguments = $event->getArguments();
  4. // call controller
  5. $response = $controller(...$arguments);
  6. // view
  7. if (!$response instanceof Response) {
  8. $event = new ViewEvent($this, $request, $type, $response, $event);
  9. $this->dispatcher->dispatch($event, KernelEvents::VIEW);
  1. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2. $this->requestStack->push($request);
  3. $response = null;
  4. try {
  5. return $response = $this->handleRaw($request, $type);
  6. } catch (\Throwable $e) {
  7. if ($e instanceof \Error && !$this->handleAllThrowables) {
  8. throw $e;
  9. }
  1. $this->boot();
  2. ++$this->requestStackSize;
  3. $this->resetServices = true;
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
  1. ) {
  2. }
  3. public function run(): int
  4. {
  5. $response = $this->kernel->handle($this->request);
  6. if (Kernel::VERSION_ID >= 60400) {
  7. $response->send(false);
  8. if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 29)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/var/www/html/tafsir/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Logs

Level Channel Message
INFO 18:20:16 deprecation User Deprecated: The annotation mapping driver is deprecated and will be removed in Doctrine ORM 3.0, please migrate to the attribute or XML driver. (AnnotationDriver.php:65 called by App_KernelDevDebugContainer.php:2544, https://github.com/doctrine/orm/issues/10098, package doctrine/orm)
{
    "exception": {}
}
INFO 18:20:16 deprecation User Deprecated: Short namespace aliases such as "RawafedSecurityBundle:Role" are deprecated and will be removed in Doctrine ORM 3.0. (Lexer.php:341 called by AbstractLexer.php:259, https://github.com/doctrine/orm/issues/8818, package doctrine/orm)
{
    "exception": {}
}
INFO 18:20:16 deprecation User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Vich\UploaderBundle\EventListener\Doctrine\CleanListener" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute.
{
    "exception": {}
}
INFO 18:20:16 deprecation User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Vich\UploaderBundle\EventListener\Doctrine\CleanListener" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute.
{
    "exception": {}
}
INFO 18:20:16 deprecation User Deprecated: Annotations support is deprecated, migrate your application to use attributes and pass an instance of Gedmo\Mapping\Driver\AttributeReader to the Gedmo\Mapping\MappedEventSubscriber::setAnnotationReader() method instead. (MappedEventSubscriber.php:196 called by getGedmo_Listener_SoftdeleteableService.php:27, https://github.com/doctrine-extensions/DoctrineExtensions/pull/2772, package gedmo/doctrine-extensions)
{
    "exception": {}
}
INFO 18:20:16 deprecation User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Gedmo\SoftDeleteable\SoftDeleteableListener" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute.
{
    "exception": {}
}
INFO 18:20:16 deprecation User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Vich\UploaderBundle\EventListener\Doctrine\InjectListener" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute.
{
    "exception": {}
}
INFO 18:20:16 deprecation User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Vich\UploaderBundle\EventListener\Doctrine\RemoveListener" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute.
{
    "exception": {}
}
INFO 18:20:16 deprecation User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Vich\UploaderBundle\EventListener\Doctrine\UploadListener" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute.
{
    "exception": {}
}
INFO 18:20:16 deprecation User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Vich\UploaderBundle\EventListener\Doctrine\InjectListener" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute.
{
    "exception": {}
}
INFO 18:20:16 deprecation User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Vich\UploaderBundle\EventListener\Doctrine\RemoveListener" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute.
{
    "exception": {}
}
INFO 18:20:16 deprecation User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Vich\UploaderBundle\EventListener\Doctrine\UploadListener" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute.
{
    "exception": {}
}
INFO 18:20:16 doctrine Connecting with parameters {params}
{
    "params": {
        "use_savepoints": true,
        "driver": "pdo_mysql",
        "idle_connection_ttl": 600,
        "host": "mysql",
        "port": 3306,
        "user": "tafsir",
        "password": "<redacted>",
        "driverOptions": [],
        "defaultTableOptions": [],
        "dbname": "tafsir",
        "serverVersion": "8.4.5",
        "charset": "utf8mb4"
    }
}
DEBUG 18:20:16 doctrine Executing query: SELECT c0_.id AS id_0, c0_.lvl AS lvl_1, c0_.lft AS lft_2, c0_.rgt AS rgt_3, c0_.root AS root_4, c0_.name AS name_5, c0_.role AS role_6, c0_.parent_id AS parent_id_7 FROM cms_roles c0_ WHERE c0_.lvl IN (0, 1) AND c0_.role NOT LIKE 'ROLE_ADMIN_%' ORDER BY c0_.root ASC, c0_.lft ASC
{
    "sql": "SELECT c0_.id AS id_0, c0_.lvl AS lvl_1, c0_.lft AS lft_2, c0_.rgt AS rgt_3, c0_.root AS root_4, c0_.name AS name_5, c0_.role AS role_6, c0_.parent_id AS parent_id_7 FROM cms_roles c0_ WHERE c0_.lvl IN (0, 1) AND c0_.role NOT LIKE 'ROLE_ADMIN_%' ORDER BY c0_.root ASC, c0_.lft ASC"
}
DEBUG 18:20:17 doctrine Executing query: SELECT t0.id AS id_1, t0.package AS package_2, t0.name AS name_3, t0.description AS description_4, t0.display_name AS display_name_5, t0.list_name AS list_name_6, t0.is_internal AS is_internal_7, t0.is_categorizable AS is_categorizable_8, t0.is_fileable AS is_fileable_9, t0.is_printable AS is_printable_10, t0.is_embeddable AS is_embeddable_11, t0.is_searchable AS is_searchable_12, t0.is_queryable AS is_queryable_13, t0.accepts_comments AS accepts_comments_14, t0.has_authors AS has_authors_15, t0.has_attachments AS has_attachments_16, t0.has_source AS has_source_17, t0.has_tags AS has_tags_18, t0.has_summary AS has_summary_19, t0.has_aggregates AS has_aggregates_20 FROM content_type t0
{
    "sql": "SELECT t0.id AS id_1, t0.package AS package_2, t0.name AS name_3, t0.description AS description_4, t0.display_name AS display_name_5, t0.list_name AS list_name_6, t0.is_internal AS is_internal_7, t0.is_categorizable AS is_categorizable_8, t0.is_fileable AS is_fileable_9, t0.is_printable AS is_printable_10, t0.is_embeddable AS is_embeddable_11, t0.is_searchable AS is_searchable_12, t0.is_queryable AS is_queryable_13, t0.accepts_comments AS accepts_comments_14, t0.has_authors AS has_authors_15, t0.has_attachments AS has_attachments_16, t0.has_source AS has_source_17, t0.has_tags AS has_tags_18, t0.has_summary AS has_summary_19, t0.has_aggregates AS has_aggregates_20 FROM content_type t0"
}
DEBUG 18:20:17 doctrine Executing query: SELECT r0_.name AS name_0, r0_.value AS value_1 FROM runtime_parameter r0_
{
    "sql": "SELECT r0_.name AS name_0, r0_.value AS value_1 FROM runtime_parameter r0_"
}
INFO 18:20:17 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "http://ar.iw.rawafedtech.info/index.php/_profiler/latest?ip=162.158.91.153&type=request",
    "method": "GET"
}
DEBUG 18:20:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 18:20:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 18:20:17 event Notified event "kernel.request" to listener "Container1hKuEWu\PosterGeneratorGhost70823e1::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Container1hKuEWu\\PosterGeneratorGhost70823e1::onKernelRequest"
}
DEBUG 18:20:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 18:20:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 18:20:17 event Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest"
}
DEBUG 18:20:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 18:20:17 event Notified event "kernel.request" to listener "Rawafed\CommonsBundle\Service\ContentApiAccessRestriction::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Rawafed\\CommonsBundle\\Service\\ContentApiAccessRestriction::onKernelRequest"
}
DEBUG 18:20:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 18:20:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 18:20:17 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 18:20:17 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 18:20:17 event Notified event "kernel.request" to listener "App\Listener\PreviewListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\Listener\\PreviewListener::onKernelRequest"
}
DEBUG 18:20:17 event Notified event "kernel.request" to listener "App\Service\CustomSlugifier::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\Service\\CustomSlugifier::onKernelRequest"
}
DEBUG 18:20:17 event Notified event "kernel.request" to listener "Rawafed\CommonsBundle\Service\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Rawafed\\CommonsBundle\\Service\\LocaleListener::onKernelRequest"
}
DEBUG 18:20:17 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 18:20:17 event Notified event "kernel.request" to listener "Rawafed\ContentManagementBundle\EventListener\PublishingListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Rawafed\\ContentManagementBundle\\EventListener\\PublishingListener::onKernelRequest"
}
DEBUG 18:20:17 event Notified event "kernel.request" to listener "Rawafed\SeoBundle\Service\Slugifier::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Rawafed\\SeoBundle\\Service\\Slugifier::onKernelRequest"
}
DEBUG 18:20:17 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 18:20:17 event Notified event "kernel.controller" to listener "Rawafed\CommonsBundle\Service\ViewsCountListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Rawafed\\CommonsBundle\\Service\\ViewsCountListener::onKernelController"
}
DEBUG 18:20:17 event Notified event "kernel.controller" to listener "Rawafed\AdminBundle\EventListener\ExceptionHandler::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Rawafed\\AdminBundle\\EventListener\\ExceptionHandler::onKernelController"
}
DEBUG 18:20:17 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 18:20:17 event Notified event "kernel.controller" to listener "Rawafed\SeoBundle\Service\SlugifierListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Rawafed\\SeoBundle\\Service\\SlugifierListener::onKernelController"
}
DEBUG 18:20:17 event Notified event "kernel.controller" to listener "Rawafed\AdvancedSeoBundle\EventListener\StructuredDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Rawafed\\AdvancedSeoBundle\\EventListener\\StructuredDataCollector::onKernelController"
}
INFO 18:20:17 deprecation User Deprecated: In ORM 3.0, the AttributeDriver will report fields for the classes where they are declared. This may uncover invalid mapping configurations. To opt into the new mode also with the AnnotationDriver today, set the "reportFieldsWhereDeclared" constructor parameter to true. (AnnotationDriver.php:75 called by App_KernelDevDebugContainer.php:2641, https://github.com/doctrine/orm/pull/10455, package doctrine/orm)
{
    "exception": {}
}
INFO 18:20:17 deprecation User Deprecated: Creating Doctrine\ORM\Mapping\UnderscoreNamingStrategy without setting second argument $numberAware=true is deprecated and will be removed in Doctrine ORM 3.0. (UnderscoreNamingStrategy.php:47 called by App_KernelDevDebugContainer.php:2667, https://github.com/doctrine/orm/pull/7908, package doctrine/orm)
{
    "exception": {}
}
DEBUG 18:20:17 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 18:20:17 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 18:20:17 event Notified event "kernel.controller_arguments" to listener "Container1hKuEWu\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Container1hKuEWu\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
DEBUG 18:20:17 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 18:20:18 doctrine Executing query: SELECT r0_.name AS name_0, r0_.value AS value_1 FROM runtime_parameter r0_
{
    "sql": "SELECT r0_.name AS name_0, r0_.value AS value_1 FROM runtime_parameter r0_"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Container1hKuEWu\PosterGeneratorGhost70823e1::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Container1hKuEWu\\PosterGeneratorGhost70823e1::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Rawafed\CommonsBundle\Service\ContentApiAccessRestriction::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Rawafed\\CommonsBundle\\Service\\ContentApiAccessRestriction::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "App\Listener\PreviewListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\Listener\\PreviewListener::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "App\Service\CustomSlugifier::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\Service\\CustomSlugifier::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Rawafed\CommonsBundle\Service\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Rawafed\\CommonsBundle\\Service\\LocaleListener::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Rawafed\ContentManagementBundle\EventListener\PublishingListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Rawafed\\ContentManagementBundle\\EventListener\\PublishingListener::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Rawafed\SeoBundle\Service\Slugifier::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Rawafed\\SeoBundle\\Service\\Slugifier::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 18:20:18 event Notified event "kernel.controller" to listener "Rawafed\CommonsBundle\Service\ViewsCountListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Rawafed\\CommonsBundle\\Service\\ViewsCountListener::onKernelController"
}
DEBUG 18:20:18 event Notified event "kernel.controller" to listener "Rawafed\AdminBundle\EventListener\ExceptionHandler::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Rawafed\\AdminBundle\\EventListener\\ExceptionHandler::onKernelController"
}
DEBUG 18:20:18 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 18:20:18 event Notified event "kernel.controller" to listener "Rawafed\SeoBundle\Service\SlugifierListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Rawafed\\SeoBundle\\Service\\SlugifierListener::onKernelController"
}
DEBUG 18:20:18 event Notified event "kernel.controller" to listener "Rawafed\AdvancedSeoBundle\EventListener\StructuredDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Rawafed\\AdvancedSeoBundle\\EventListener\\StructuredDataCollector::onKernelController"
}
DEBUG 18:20:18 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 18:20:18 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 18:20:18 event Notified event "kernel.controller_arguments" to listener "Container1hKuEWu\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Container1hKuEWu\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
DEBUG 18:20:18 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 18:20:18 event Notified event "kernel.response" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelResponse"
}
DEBUG 18:20:18 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 18:20:18 event Notified event "kernel.response" to listener "Rawafed\CommonsBundle\Service\LocationManager::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Rawafed\\CommonsBundle\\Service\\LocationManager::onKernelResponse"
}
DEBUG 18:20:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 18:20:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 18:20:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
DEBUG 18:20:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 18:20:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 18:20:18 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 18:20:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 18:20:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 18:20:18 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
DEBUG 18:20:18 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
DEBUG 18:20:18 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
DEBUG 18:20:18 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Container1hKuEWu\PosterGeneratorGhost70823e1::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Container1hKuEWu\\PosterGeneratorGhost70823e1::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Rawafed\CommonsBundle\Service\ContentApiAccessRestriction::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Rawafed\\CommonsBundle\\Service\\ContentApiAccessRestriction::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "App\Listener\PreviewListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\Listener\\PreviewListener::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "App\Service\CustomSlugifier::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\Service\\CustomSlugifier::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Rawafed\CommonsBundle\Service\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Rawafed\\CommonsBundle\\Service\\LocaleListener::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Rawafed\ContentManagementBundle\EventListener\PublishingListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Rawafed\\ContentManagementBundle\\EventListener\\PublishingListener::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Rawafed\SeoBundle\Service\Slugifier::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Rawafed\\SeoBundle\\Service\\Slugifier::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 18:20:18 event Notified event "kernel.controller" to listener "Rawafed\CommonsBundle\Service\ViewsCountListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Rawafed\\CommonsBundle\\Service\\ViewsCountListener::onKernelController"
}
DEBUG 18:20:18 event Notified event "kernel.controller" to listener "Rawafed\AdminBundle\EventListener\ExceptionHandler::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Rawafed\\AdminBundle\\EventListener\\ExceptionHandler::onKernelController"
}
DEBUG 18:20:18 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 18:20:18 event Notified event "kernel.controller" to listener "Rawafed\SeoBundle\Service\SlugifierListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Rawafed\\SeoBundle\\Service\\SlugifierListener::onKernelController"
}
DEBUG 18:20:18 event Notified event "kernel.controller" to listener "Rawafed\AdvancedSeoBundle\EventListener\StructuredDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Rawafed\\AdvancedSeoBundle\\EventListener\\StructuredDataCollector::onKernelController"
}
DEBUG 18:20:18 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 18:20:18 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 18:20:18 event Notified event "kernel.controller_arguments" to listener "Container1hKuEWu\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Container1hKuEWu\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
DEBUG 18:20:18 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 18:20:18 event Notified event "kernel.response" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelResponse"
}
DEBUG 18:20:18 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 18:20:18 event Notified event "kernel.response" to listener "Rawafed\CommonsBundle\Service\LocationManager::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Rawafed\\CommonsBundle\\Service\\LocationManager::onKernelResponse"
}
DEBUG 18:20:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 18:20:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 18:20:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
DEBUG 18:20:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 18:20:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 18:20:18 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 18:20:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 18:20:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 18:20:18 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
DEBUG 18:20:18 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
DEBUG 18:20:18 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
DEBUG 18:20:18 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Container1hKuEWu\PosterGeneratorGhost70823e1::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Container1hKuEWu\\PosterGeneratorGhost70823e1::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Rawafed\CommonsBundle\Service\ContentApiAccessRestriction::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Rawafed\\CommonsBundle\\Service\\ContentApiAccessRestriction::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "App\Listener\PreviewListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\Listener\\PreviewListener::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "App\Service\CustomSlugifier::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\Service\\CustomSlugifier::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Rawafed\CommonsBundle\Service\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Rawafed\\CommonsBundle\\Service\\LocaleListener::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Rawafed\ContentManagementBundle\EventListener\PublishingListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Rawafed\\ContentManagementBundle\\EventListener\\PublishingListener::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.request" to listener "Rawafed\SeoBundle\Service\Slugifier::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Rawafed\\SeoBundle\\Service\\Slugifier::onKernelRequest"
}
DEBUG 18:20:18 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 18:20:18 event Notified event "kernel.controller" to listener "Rawafed\CommonsBundle\Service\ViewsCountListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Rawafed\\CommonsBundle\\Service\\ViewsCountListener::onKernelController"
}
DEBUG 18:20:18 event Notified event "kernel.controller" to listener "Rawafed\AdminBundle\EventListener\ExceptionHandler::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Rawafed\\AdminBundle\\EventListener\\ExceptionHandler::onKernelController"
}
DEBUG 18:20:18 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 18:20:18 event Notified event "kernel.controller" to listener "Rawafed\SeoBundle\Service\SlugifierListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Rawafed\\SeoBundle\\Service\\SlugifierListener::onKernelController"
}
DEBUG 18:20:18 event Notified event "kernel.controller" to listener "Rawafed\AdvancedSeoBundle\EventListener\StructuredDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Rawafed\\AdvancedSeoBundle\\EventListener\\StructuredDataCollector::onKernelController"
}
DEBUG 18:20:18 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 18:20:18 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 18:20:18 event Notified event "kernel.controller_arguments" to listener "Container1hKuEWu\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Container1hKuEWu\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
DEBUG 18:20:18 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}

Stack Trace

RuntimeError
Twig\Error\RuntimeError:
Key "object" for sequence/mapping with keys "_type, _id, entriesCount, activeEntryId, view_order, publishDate, rank" does not exist in "@ContentManagement/item.html.twig" at line 2.

  at templates/bundles/ContentManagementBundle/item.html.twig:2
  at Twig\Extension\CoreExtension::getAttribute(object(Environment), object(Source), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00'), 'object', array(), 'any', false, false, false, 2)
     (var/cache/dev/twig/89/89ad380ed80c89e9e5419fad06ea6f16.php:51)
  at __TwigTemplate_c7359efb53b3d32cb3dd674442d66b58->doDisplay(array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => 1, 'route_params' => array('slug' => '-أحمد-إبراهيم-هاني', 'id' => '2403'), 'route' => 'author', 'routePath' => '/author/2403/-%D8%A3%D8%AD%D9%85%D8%AF-%D8%A5%D8%A8%D8%B1%D8%A7%D9%87%D9%8A%D9%85-%D9%87%D8%A7%D9%86%D9%8A', 'show_author' => true, '_parent' => array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => 1, 'route_params' => array('slug' => '-أحمد-إبراهيم-هاني', 'id' => '2403'), 'route' => 'author', 'routePath' => '/author/2403/-%D8%A3%D8%AD%D9%85%D8%AF-%D8%A5%D8%A8%D8%B1%D8%A7%D9%87%D9%8A%D9%85-%D9%87%D8%A7%D9%86%D9%8A', 'show_author' => true), '_seq' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'loop' => array('parent' => array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => 1, 'route_params' => array('slug' => '-أحمد-إبراهيم-هاني', 'id' => '2403'), 'route' => 'author', 'routePath' => '/author/2403/-%D8%A3%D8%AD%D9%85%D8%AF-%D8%A5%D8%A8%D8%B1%D8%A7%D9%87%D9%8A%D9%85-%D9%87%D8%A7%D9%86%D9%8A', 'show_author' => true), 'index0' => 9, 'index' => 10, 'first' => false, 'revindex0' => 0, 'revindex' => 1, 'length' => 10, 'last' => true), 'item' => array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00'), '_key' => 9), array())
     (vendor/twig/twig/src/Template.php:402)
  at Twig\Template->yield(array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => 1, 'route_params' => array('slug' => '-أحمد-إبراهيم-هاني', 'id' => '2403'), 'route' => 'author', 'routePath' => '/author/2403/-%D8%A3%D8%AD%D9%85%D8%AF-%D8%A5%D8%A8%D8%B1%D8%A7%D9%87%D9%8A%D9%85-%D9%87%D8%A7%D9%86%D9%8A', 'show_author' => true, '_parent' => array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => 1, 'route_params' => array('slug' => '-أحمد-إبراهيم-هاني', 'id' => '2403'), 'route' => 'author', 'routePath' => '/author/2403/-%D8%A3%D8%AD%D9%85%D8%AF-%D8%A5%D8%A8%D8%B1%D8%A7%D9%87%D9%8A%D9%85-%D9%87%D8%A7%D9%86%D9%8A', 'show_author' => true), '_seq' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'loop' => array('parent' => array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => 1, 'route_params' => array('slug' => '-أحمد-إبراهيم-هاني', 'id' => '2403'), 'route' => 'author', 'routePath' => '/author/2403/-%D8%A3%D8%AD%D9%85%D8%AF-%D8%A5%D8%A8%D8%B1%D8%A7%D9%87%D9%8A%D9%85-%D9%87%D8%A7%D9%86%D9%8A', 'show_author' => true), 'index0' => 9, 'index' => 10, 'first' => false, 'revindex0' => 0, 'revindex' => 1, 'length' => 10, 'last' => true), 'item' => array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00'), '_key' => 9), array())
     (vendor/twig/twig/src/Template.php:358)
  at Twig\Template->display(array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => 1, 'route_params' => array('slug' => '-أحمد-إبراهيم-هاني', 'id' => '2403'), 'route' => 'author', 'routePath' => '/author/2403/-%D8%A3%D8%AD%D9%85%D8%AF-%D8%A5%D8%A8%D8%B1%D8%A7%D9%87%D9%8A%D9%85-%D9%87%D8%A7%D9%86%D9%8A', 'show_author' => true, '_parent' => array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => 1, 'route_params' => array('slug' => '-أحمد-إبراهيم-هاني', 'id' => '2403'), 'route' => 'author', 'routePath' => '/author/2403/-%D8%A3%D8%AD%D9%85%D8%AF-%D8%A5%D8%A8%D8%B1%D8%A7%D9%87%D9%8A%D9%85-%D9%87%D8%A7%D9%86%D9%8A', 'show_author' => true), '_seq' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'loop' => array('parent' => array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => 1, 'route_params' => array('slug' => '-أحمد-إبراهيم-هاني', 'id' => '2403'), 'route' => 'author', 'routePath' => '/author/2403/-%D8%A3%D8%AD%D9%85%D8%AF-%D8%A5%D8%A8%D8%B1%D8%A7%D9%87%D9%8A%D9%85-%D9%87%D8%A7%D9%86%D9%8A', 'show_author' => true), 'index0' => 9, 'index' => 10, 'first' => false, 'revindex0' => 0, 'revindex' => 1, 'length' => 10, 'last' => true), 'item' => array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00'), '_key' => 9))
     (vendor/twig/twig/src/Template.php:373)
  at Twig\Template->render(array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => 1, 'route_params' => array('slug' => '-أحمد-إبراهيم-هاني', 'id' => '2403'), 'route' => 'author', 'routePath' => '/author/2403/-%D8%A3%D8%AD%D9%85%D8%AF-%D8%A5%D8%A8%D8%B1%D8%A7%D9%87%D9%8A%D9%85-%D9%87%D8%A7%D9%86%D9%8A', 'show_author' => true, '_parent' => array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => 1, 'route_params' => array('slug' => '-أحمد-إبراهيم-هاني', 'id' => '2403'), 'route' => 'author', 'routePath' => '/author/2403/-%D8%A3%D8%AD%D9%85%D8%AF-%D8%A5%D8%A8%D8%B1%D8%A7%D9%87%D9%8A%D9%85-%D9%87%D8%A7%D9%86%D9%8A', 'show_author' => true), '_seq' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'loop' => array('parent' => array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => 1, 'route_params' => array('slug' => '-أحمد-إبراهيم-هاني', 'id' => '2403'), 'route' => 'author', 'routePath' => '/author/2403/-%D8%A3%D8%AD%D9%85%D8%AF-%D8%A5%D8%A8%D8%B1%D8%A7%D9%87%D9%8A%D9%85-%D9%87%D8%A7%D9%86%D9%8A', 'show_author' => true), 'index0' => 9, 'index' => 10, 'first' => false, 'revindex0' => 0, 'revindex' => 1, 'length' => 10, 'last' => true), 'item' => array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00'), '_key' => 9))
     (vendor/twig/twig/src/TemplateWrapper.php:51)
  at Twig\TemplateWrapper->render(array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => 1, 'route_params' => array('slug' => '-أحمد-إبراهيم-هاني', 'id' => '2403'), 'route' => 'author', 'routePath' => '/author/2403/-%D8%A3%D8%AD%D9%85%D8%AF-%D8%A5%D8%A8%D8%B1%D8%A7%D9%87%D9%8A%D9%85-%D9%87%D8%A7%D9%86%D9%8A', 'show_author' => true, '_parent' => array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => 1, 'route_params' => array('slug' => '-أحمد-إبراهيم-هاني', 'id' => '2403'), 'route' => 'author', 'routePath' => '/author/2403/-%D8%A3%D8%AD%D9%85%D8%AF-%D8%A5%D8%A8%D8%B1%D8%A7%D9%87%D9%8A%D9%85-%D9%87%D8%A7%D9%86%D9%8A', 'show_author' => true), '_seq' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'loop' => array('parent' => array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => 1, 'route_params' => array('slug' => '-أحمد-إبراهيم-هاني', 'id' => '2403'), 'route' => 'author', 'routePath' => '/author/2403/-%D8%A3%D8%AD%D9%85%D8%AF-%D8%A5%D8%A8%D8%B1%D8%A7%D9%87%D9%8A%D9%85-%D9%87%D8%A7%D9%86%D9%8A', 'show_author' => true), 'index0' => 9, 'index' => 10, 'first' => false, 'revindex0' => 0, 'revindex' => 1, 'length' => 10, 'last' => true), 'item' => array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00'), '_key' => 9))
     (vendor/twig/twig/src/Extension/CoreExtension.php:1520)
  at Twig\Extension\CoreExtension::include(object(Environment), array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => 1, 'route_params' => array('slug' => '-أحمد-إبراهيم-هاني', 'id' => '2403'), 'route' => 'author', 'routePath' => '/author/2403/-%D8%A3%D8%AD%D9%85%D8%AF-%D8%A5%D8%A8%D8%B1%D8%A7%D9%87%D9%8A%D9%85-%D9%87%D8%A7%D9%86%D9%8A', 'show_author' => true, '_parent' => array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => 1, 'route_params' => array('slug' => '-أحمد-إبراهيم-هاني', 'id' => '2403'), 'route' => 'author', 'routePath' => '/author/2403/-%D8%A3%D8%AD%D9%85%D8%AF-%D8%A5%D8%A8%D8%B1%D8%A7%D9%87%D9%8A%D9%85-%D9%87%D8%A7%D9%86%D9%8A', 'show_author' => true), '_seq' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'loop' => array('parent' => array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => 1, 'route_params' => array('slug' => '-أحمد-إبراهيم-هاني', 'id' => '2403'), 'route' => 'author', 'routePath' => '/author/2403/-%D8%A3%D8%AD%D9%85%D8%AF-%D8%A5%D8%A8%D8%B1%D8%A7%D9%87%D9%8A%D9%85-%D9%87%D8%A7%D9%86%D9%8A', 'show_author' => true), 'index0' => 9, 'index' => 10, 'first' => false, 'revindex0' => 0, 'revindex' => 1, 'length' => 10, 'last' => true), 'item' => array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00'), '_key' => 9), '@ContentManagement/item.html.twig', array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => 1, 'route_params' => array('slug' => '-أحمد-إبراهيم-هاني', 'id' => '2403'), 'route' => 'author', 'routePath' => '/author/2403/-%D8%A3%D8%AD%D9%85%D8%AF-%D8%A5%D8%A8%D8%B1%D8%A7%D9%87%D9%8A%D9%85-%D9%87%D8%A7%D9%86%D9%8A', 'show_author' => true, '_parent' => array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => 1, 'route_params' => array('slug' => '-أحمد-إبراهيم-هاني', 'id' => '2403'), 'route' => 'author', 'routePath' => '/author/2403/-%D8%A3%D8%AD%D9%85%D8%AF-%D8%A5%D8%A8%D8%B1%D8%A7%D9%87%D9%8A%D9%85-%D9%87%D8%A7%D9%86%D9%8A', 'show_author' => true), '_seq' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'loop' => array('parent' => array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => 1, 'route_params' => array('slug' => '-أحمد-إبراهيم-هاني', 'id' => '2403'), 'route' => 'author', 'routePath' => '/author/2403/-%D8%A3%D8%AD%D9%85%D8%AF-%D8%A5%D8%A8%D8%B1%D8%A7%D9%87%D9%8A%D9%85-%D9%87%D8%A7%D9%86%D9%8A', 'show_author' => true), 'index0' => 9, 'index' => 10, 'first' => false, 'revindex0' => 0, 'revindex' => 1, 'length' => 10, 'last' => true), 'item' => array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00'), '_key' => 9))
     (var/cache/dev/twig/1d/1d2476895ed7cfa3023d8aea11ce4a86.php:121)
  at __TwigTemplate_55dedf24b90149666227a25ec87911d8->block_list_page(array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => 1, 'route_params' => array('slug' => '-أحمد-إبراهيم-هاني', 'id' => '2403'), 'route' => 'author', 'routePath' => '/author/2403/-%D8%A3%D8%AD%D9%85%D8%AF-%D8%A5%D8%A8%D8%B1%D8%A7%D9%87%D9%8A%D9%85-%D9%87%D8%A7%D9%86%D9%8A', 'show_author' => true, '_parent' => array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => 1, 'route_params' => array('slug' => '-أحمد-إبراهيم-هاني', 'id' => '2403'), 'route' => 'author', 'routePath' => '/author/2403/-%D8%A3%D8%AD%D9%85%D8%AF-%D8%A5%D8%A8%D8%B1%D8%A7%D9%87%D9%8A%D9%85-%D9%87%D8%A7%D9%86%D9%8A', 'show_author' => true), '_seq' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'loop' => array('parent' => array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => 1, 'route_params' => array('slug' => '-أحمد-إبراهيم-هاني', 'id' => '2403'), 'route' => 'author', 'routePath' => '/author/2403/-%D8%A3%D8%AD%D9%85%D8%AF-%D8%A5%D8%A8%D8%B1%D8%A7%D9%87%D9%8A%D9%85-%D9%87%D8%A7%D9%86%D9%8A', 'show_author' => true), 'index0' => 9, 'index' => 10, 'first' => false, 'revindex0' => 0, 'revindex' => 1, 'length' => 10, 'last' => true), 'item' => array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00'), '_key' => 9), array('page_title' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_page_title'), 'head' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_head'), 'page_content' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_page_content'), 'page_content_header' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_page_content_header'), 'contextual' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_contextual'), 'title_container' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_title_container'), 'content_title' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_content_title'), 'content' => array(object(__TwigTemplate_a6464b22a5c3082ce72451871b67a1c6), 'block_content'), 'aside' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_aside'), 'modals' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_modals'), 'js_files' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_js_files'), 'js_document_ready' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_js_document_ready'), 'cms_content' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_cms_content'), 'list_page' => array(object(__TwigTemplate_55dedf24b90149666227a25ec87911d8), 'block_list_page'), 'list_loader' => array(object(__TwigTemplate_55dedf24b90149666227a25ec87911d8), 'block_list_loader')))
     (vendor/twig/twig/src/Template.php:446)
  at Twig\Template->yieldBlock('list_page', array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => array('page' => object(Page), 'data' => array('zones' => array(array('entry_author_aside' => object(Zone))), 'css_content' => array('    <link href="/assets/lib/OwlCarousel2-2.2.1/dist/assets/owl.carousel.min-e75f09b058dfc96b7d8fcafdf21ec723.css" rel="stylesheet">    <link href="/assets/lib/OwlCarousel2-2.2.1/dist/assets/owl.theme.default.min-becb0689b0a2530d9094bd9b350bdb30.css" rel="stylesheet">'), 'js_dom_ready' => array('    alert(1);'))), 'route_params' => array('slug' => '-أحمد-إبراهيم-هاني', 'id' => '2403'), 'route' => 'author', 'routePath' => '/author/2403/-%D8%A3%D8%AD%D9%85%D8%AF-%D8%A5%D8%A8%D8%B1%D8%A7%D9%87%D9%8A%D9%85-%D9%87%D8%A7%D9%86%D9%8A'), array('page_title' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_page_title'), 'head' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_head'), 'page_content' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_page_content'), 'page_content_header' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_page_content_header'), 'contextual' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_contextual'), 'title_container' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_title_container'), 'content_title' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_content_title'), 'content' => array(object(__TwigTemplate_a6464b22a5c3082ce72451871b67a1c6), 'block_content'), 'aside' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_aside'), 'modals' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_modals'), 'js_files' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_js_files'), 'js_document_ready' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_js_document_ready'), 'cms_content' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_cms_content'), 'list_page' => array(object(__TwigTemplate_55dedf24b90149666227a25ec87911d8), 'block_list_page'), 'list_loader' => array(object(__TwigTemplate_55dedf24b90149666227a25ec87911d8), 'block_list_loader')))
     (var/cache/dev/twig/50/503691fad1f9e9368e188098286fc9b9.php:273)
  at __TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb->block_cms_content(array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => array('page' => object(Page), 'data' => array('zones' => array(array('entry_author_aside' => object(Zone))), 'css_content' => array('    <link href="/assets/lib/OwlCarousel2-2.2.1/dist/assets/owl.carousel.min-e75f09b058dfc96b7d8fcafdf21ec723.css" rel="stylesheet">    <link href="/assets/lib/OwlCarousel2-2.2.1/dist/assets/owl.theme.default.min-becb0689b0a2530d9094bd9b350bdb30.css" rel="stylesheet">'), 'js_dom_ready' => array('    alert(1);'))), 'route_params' => array('slug' => '-أحمد-إبراهيم-هاني', 'id' => '2403'), 'route' => 'author', 'routePath' => '/author/2403/-%D8%A3%D8%AD%D9%85%D8%AF-%D8%A5%D8%A8%D8%B1%D8%A7%D9%87%D9%8A%D9%85-%D9%87%D8%A7%D9%86%D9%8A'), array('page_title' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_page_title'), 'head' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_head'), 'page_content' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_page_content'), 'page_content_header' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_page_content_header'), 'contextual' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_contextual'), 'title_container' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_title_container'), 'content_title' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_content_title'), 'content' => array(object(__TwigTemplate_a6464b22a5c3082ce72451871b67a1c6), 'block_content'), 'aside' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_aside'), 'modals' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_modals'), 'js_files' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_js_files'), 'js_document_ready' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_js_document_ready'), 'cms_content' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_cms_content'), 'list_page' => array(object(__TwigTemplate_55dedf24b90149666227a25ec87911d8), 'block_list_page'), 'list_loader' => array(object(__TwigTemplate_55dedf24b90149666227a25ec87911d8), 'block_list_loader')))
     (vendor/twig/twig/src/Template.php:446)
  at Twig\Template->yieldBlock('cms_content', array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => array('page' => object(Page), 'data' => array('zones' => array(array('entry_author_aside' => object(Zone))), 'css_content' => array('    <link href="/assets/lib/OwlCarousel2-2.2.1/dist/assets/owl.carousel.min-e75f09b058dfc96b7d8fcafdf21ec723.css" rel="stylesheet">    <link href="/assets/lib/OwlCarousel2-2.2.1/dist/assets/owl.theme.default.min-becb0689b0a2530d9094bd9b350bdb30.css" rel="stylesheet">'), 'js_dom_ready' => array('    alert(1);'))), 'route_params' => array('slug' => '-أحمد-إبراهيم-هاني', 'id' => '2403'), 'route' => 'author', 'routePath' => '/author/2403/-%D8%A3%D8%AD%D9%85%D8%AF-%D8%A5%D8%A8%D8%B1%D8%A7%D9%87%D9%8A%D9%85-%D9%87%D8%A7%D9%86%D9%8A'), array('page_title' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_page_title'), 'head' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_head'), 'page_content' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_page_content'), 'page_content_header' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_page_content_header'), 'contextual' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_contextual'), 'title_container' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_title_container'), 'content_title' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_content_title'), 'content' => array(object(__TwigTemplate_a6464b22a5c3082ce72451871b67a1c6), 'block_content'), 'aside' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_aside'), 'modals' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_modals'), 'js_files' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_js_files'), 'js_document_ready' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_js_document_ready'), 'cms_content' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_cms_content'), 'list_page' => array(object(__TwigTemplate_55dedf24b90149666227a25ec87911d8), 'block_list_page'), 'list_loader' => array(object(__TwigTemplate_55dedf24b90149666227a25ec87911d8), 'block_list_loader')))
     (var/cache/dev/twig/5f/5fde1ed46c8449a0ba0f2f61d3cd37f4.php:78)
  at __TwigTemplate_a6464b22a5c3082ce72451871b67a1c6->block_content(array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => array('page' => object(Page), 'data' => array('zones' => array(array('entry_author_aside' => object(Zone))), 'css_content' => array('    <link href="/assets/lib/OwlCarousel2-2.2.1/dist/assets/owl.carousel.min-e75f09b058dfc96b7d8fcafdf21ec723.css" rel="stylesheet">    <link href="/assets/lib/OwlCarousel2-2.2.1/dist/assets/owl.theme.default.min-becb0689b0a2530d9094bd9b350bdb30.css" rel="stylesheet">'), 'js_dom_ready' => array('    alert(1);'))), 'route_params' => array('slug' => '-أحمد-إبراهيم-هاني', 'id' => '2403'), 'route' => 'author', 'routePath' => '/author/2403/-%D8%A3%D8%AD%D9%85%D8%AF-%D8%A5%D8%A8%D8%B1%D8%A7%D9%87%D9%8A%D9%85-%D9%87%D8%A7%D9%86%D9%8A'), array('page_title' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_page_title'), 'head' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_head'), 'page_content' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_page_content'), 'page_content_header' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_page_content_header'), 'contextual' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_contextual'), 'title_container' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_title_container'), 'content_title' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_content_title'), 'content' => array(object(__TwigTemplate_a6464b22a5c3082ce72451871b67a1c6), 'block_content'), 'aside' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_aside'), 'modals' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_modals'), 'js_files' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_js_files'), 'js_document_ready' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_js_document_ready'), 'cms_content' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_cms_content'), 'list_page' => array(object(__TwigTemplate_55dedf24b90149666227a25ec87911d8), 'block_list_page'), 'list_loader' => array(object(__TwigTemplate_55dedf24b90149666227a25ec87911d8), 'block_list_loader')))
     (vendor/twig/twig/src/Template.php:446)
  at Twig\Template->yieldBlock('content', array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => array('page' => object(Page), 'data' => array('zones' => array(array('entry_author_aside' => object(Zone))), 'css_content' => array('    <link href="/assets/lib/OwlCarousel2-2.2.1/dist/assets/owl.carousel.min-e75f09b058dfc96b7d8fcafdf21ec723.css" rel="stylesheet">    <link href="/assets/lib/OwlCarousel2-2.2.1/dist/assets/owl.theme.default.min-becb0689b0a2530d9094bd9b350bdb30.css" rel="stylesheet">'), 'js_dom_ready' => array('    alert(1);'))), 'route_params' => array('slug' => '-أحمد-إبراهيم-هاني', 'id' => '2403'), 'route' => 'author', 'routePath' => '/author/2403/-%D8%A3%D8%AD%D9%85%D8%AF-%D8%A5%D8%A8%D8%B1%D8%A7%D9%87%D9%8A%D9%85-%D9%87%D8%A7%D9%86%D9%8A'), array('page_title' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_page_title'), 'head' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_head'), 'page_content' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_page_content'), 'page_content_header' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_page_content_header'), 'contextual' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_contextual'), 'title_container' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_title_container'), 'content_title' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_content_title'), 'content' => array(object(__TwigTemplate_a6464b22a5c3082ce72451871b67a1c6), 'block_content'), 'aside' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_aside'), 'modals' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_modals'), 'js_files' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_js_files'), 'js_document_ready' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_js_document_ready'), 'cms_content' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_cms_content'), 'list_page' => array(object(__TwigTemplate_55dedf24b90149666227a25ec87911d8), 'block_list_page'), 'list_loader' => array(object(__TwigTemplate_55dedf24b90149666227a25ec87911d8), 'block_list_loader')))
     (var/cache/dev/twig/79/793bbfbcdad397d8835ed3850acd3b1d.php:790)
  at __TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d->block_page_content(array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => array('page' => object(Page), 'data' => array('zones' => array(array('entry_author_aside' => object(Zone))), 'css_content' => array('    <link href="/assets/lib/OwlCarousel2-2.2.1/dist/assets/owl.carousel.min-e75f09b058dfc96b7d8fcafdf21ec723.css" rel="stylesheet">    <link href="/assets/lib/OwlCarousel2-2.2.1/dist/assets/owl.theme.default.min-becb0689b0a2530d9094bd9b350bdb30.css" rel="stylesheet">'), 'js_dom_ready' => array('    alert(1);'))), 'route_params' => array('slug' => '-أحمد-إبراهيم-هاني', 'id' => '2403'), 'route' => 'author', 'routePath' => '/author/2403/-%D8%A3%D8%AD%D9%85%D8%AF-%D8%A5%D8%A8%D8%B1%D8%A7%D9%87%D9%8A%D9%85-%D9%87%D8%A7%D9%86%D9%8A'), array('page_title' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_page_title'), 'head' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_head'), 'page_content' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_page_content'), 'page_content_header' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_page_content_header'), 'contextual' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_contextual'), 'title_container' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_title_container'), 'content_title' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_content_title'), 'content' => array(object(__TwigTemplate_a6464b22a5c3082ce72451871b67a1c6), 'block_content'), 'aside' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_aside'), 'modals' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_modals'), 'js_files' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_js_files'), 'js_document_ready' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_js_document_ready'), 'cms_content' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_cms_content'), 'list_page' => array(object(__TwigTemplate_55dedf24b90149666227a25ec87911d8), 'block_list_page'), 'list_loader' => array(object(__TwigTemplate_55dedf24b90149666227a25ec87911d8), 'block_list_loader')))
     (vendor/twig/twig/src/Template.php:446)
  at Twig\Template->yieldBlock('page_content', array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => array('page' => object(Page), 'data' => array('zones' => array(array('entry_author_aside' => object(Zone))), 'css_content' => array('    <link href="/assets/lib/OwlCarousel2-2.2.1/dist/assets/owl.carousel.min-e75f09b058dfc96b7d8fcafdf21ec723.css" rel="stylesheet">    <link href="/assets/lib/OwlCarousel2-2.2.1/dist/assets/owl.theme.default.min-becb0689b0a2530d9094bd9b350bdb30.css" rel="stylesheet">'), 'js_dom_ready' => array('    alert(1);'))), 'route_params' => array('slug' => '-أحمد-إبراهيم-هاني', 'id' => '2403'), 'route' => 'author', 'routePath' => '/author/2403/-%D8%A3%D8%AD%D9%85%D8%AF-%D8%A5%D8%A8%D8%B1%D8%A7%D9%87%D9%8A%D9%85-%D9%87%D8%A7%D9%86%D9%8A'), array('page_title' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_page_title'), 'head' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_head'), 'page_content' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_page_content'), 'page_content_header' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_page_content_header'), 'contextual' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_contextual'), 'title_container' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_title_container'), 'content_title' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_content_title'), 'content' => array(object(__TwigTemplate_a6464b22a5c3082ce72451871b67a1c6), 'block_content'), 'aside' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_aside'), 'modals' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_modals'), 'js_files' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_js_files'), 'js_document_ready' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_js_document_ready'), 'cms_content' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_cms_content'), 'list_page' => array(object(__TwigTemplate_55dedf24b90149666227a25ec87911d8), 'block_list_page'), 'list_loader' => array(object(__TwigTemplate_55dedf24b90149666227a25ec87911d8), 'block_list_loader')))
     (var/cache/dev/twig/79/793bbfbcdad397d8835ed3850acd3b1d.php:296)
  at __TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d->doDisplay(array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => array('page' => object(Page), 'data' => array('zones' => array(array('entry_author_aside' => object(Zone))), 'css_content' => array('    <link href="/assets/lib/OwlCarousel2-2.2.1/dist/assets/owl.carousel.min-e75f09b058dfc96b7d8fcafdf21ec723.css" rel="stylesheet">    <link href="/assets/lib/OwlCarousel2-2.2.1/dist/assets/owl.theme.default.min-becb0689b0a2530d9094bd9b350bdb30.css" rel="stylesheet">'), 'js_dom_ready' => array('    alert(1);'))), 'route_params' => array('slug' => '-أحمد-إبراهيم-هاني', 'id' => '2403'), 'route' => 'author', 'routePath' => '/author/2403/-%D8%A3%D8%AD%D9%85%D8%AF-%D8%A5%D8%A8%D8%B1%D8%A7%D9%87%D9%8A%D9%85-%D9%87%D8%A7%D9%86%D9%8A'), array('page_title' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_page_title'), 'head' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_head'), 'page_content' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_page_content'), 'page_content_header' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_page_content_header'), 'contextual' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_contextual'), 'title_container' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_title_container'), 'content_title' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_content_title'), 'content' => array(object(__TwigTemplate_a6464b22a5c3082ce72451871b67a1c6), 'block_content'), 'aside' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_aside'), 'modals' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_modals'), 'js_files' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_js_files'), 'js_document_ready' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_js_document_ready'), 'cms_content' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_cms_content'), 'list_page' => array(object(__TwigTemplate_55dedf24b90149666227a25ec87911d8), 'block_list_page'), 'list_loader' => array(object(__TwigTemplate_55dedf24b90149666227a25ec87911d8), 'block_list_loader')))
     (vendor/twig/twig/src/Template.php:402)
  at Twig\Template->yield(array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => array('page' => object(Page), 'data' => array('zones' => array(array('entry_author_aside' => object(Zone))), 'css_content' => array('    <link href="/assets/lib/OwlCarousel2-2.2.1/dist/assets/owl.carousel.min-e75f09b058dfc96b7d8fcafdf21ec723.css" rel="stylesheet">    <link href="/assets/lib/OwlCarousel2-2.2.1/dist/assets/owl.theme.default.min-becb0689b0a2530d9094bd9b350bdb30.css" rel="stylesheet">'), 'js_dom_ready' => array('    alert(1);')))), array('page_title' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_page_title'), 'head' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_head'), 'page_content' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_page_content'), 'page_content_header' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_page_content_header'), 'contextual' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_contextual'), 'title_container' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_title_container'), 'content_title' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_content_title'), 'content' => array(object(__TwigTemplate_a6464b22a5c3082ce72451871b67a1c6), 'block_content'), 'aside' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_aside'), 'modals' => array(object(__TwigTemplate_a8a1d3ee9bb52566fc9df5952711ab8d), 'block_modals'), 'js_files' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_js_files'), 'js_document_ready' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_js_document_ready'), 'cms_content' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_cms_content'), 'list_page' => array(object(__TwigTemplate_55dedf24b90149666227a25ec87911d8), 'block_list_page'), 'list_loader' => array(object(__TwigTemplate_55dedf24b90149666227a25ec87911d8), 'block_list_loader')))
     (var/cache/dev/twig/1d/1de1db3a09b0aaa5efd891200ebc0a6a.php:53)
  at __TwigTemplate_0afc9a159d7b4675127ecbf02e35952b->doDisplay(array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => array('page' => object(Page), 'data' => array('zones' => array(array('entry_author_aside' => object(Zone))), 'css_content' => array('    <link href="/assets/lib/OwlCarousel2-2.2.1/dist/assets/owl.carousel.min-e75f09b058dfc96b7d8fcafdf21ec723.css" rel="stylesheet">    <link href="/assets/lib/OwlCarousel2-2.2.1/dist/assets/owl.theme.default.min-becb0689b0a2530d9094bd9b350bdb30.css" rel="stylesheet">'), 'js_dom_ready' => array('    alert(1);')))), array('content' => array(object(__TwigTemplate_a6464b22a5c3082ce72451871b67a1c6), 'block_content'), 'cms_content' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_cms_content'), 'list_page' => array(object(__TwigTemplate_55dedf24b90149666227a25ec87911d8), 'block_list_page'), 'list_loader' => array(object(__TwigTemplate_55dedf24b90149666227a25ec87911d8), 'block_list_loader'), 'page_title' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_page_title'), 'title_container' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_title_container'), 'aside' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_aside'), 'js_files' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_js_files'), 'js_document_ready' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_js_document_ready')))
     (vendor/twig/twig/src/Template.php:402)
  at Twig\Template->yield(array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => array('page' => object(Page), 'data' => array('zones' => array(array('entry_author_aside' => object(Zone))), 'css_content' => array('    <link href="/assets/lib/OwlCarousel2-2.2.1/dist/assets/owl.carousel.min-e75f09b058dfc96b7d8fcafdf21ec723.css" rel="stylesheet">    <link href="/assets/lib/OwlCarousel2-2.2.1/dist/assets/owl.theme.default.min-becb0689b0a2530d9094bd9b350bdb30.css" rel="stylesheet">'), 'js_dom_ready' => array('    alert(1);')))), array('content' => array(object(__TwigTemplate_a6464b22a5c3082ce72451871b67a1c6), 'block_content'), 'cms_content' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_cms_content'), 'list_page' => array(object(__TwigTemplate_55dedf24b90149666227a25ec87911d8), 'block_list_page'), 'list_loader' => array(object(__TwigTemplate_55dedf24b90149666227a25ec87911d8), 'block_list_loader'), 'page_title' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_page_title'), 'title_container' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_title_container'), 'aside' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_aside'), 'js_files' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_js_files'), 'js_document_ready' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_js_document_ready')))
     (var/cache/dev/twig/5f/5fde1ed46c8449a0ba0f2f61d3cd37f4.php:54)
  at __TwigTemplate_a6464b22a5c3082ce72451871b67a1c6->doDisplay(array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => array('page' => object(Page), 'data' => array('zones' => array(array('entry_author_aside' => object(Zone))), 'css_content' => array('    <link href="/assets/lib/OwlCarousel2-2.2.1/dist/assets/owl.carousel.min-e75f09b058dfc96b7d8fcafdf21ec723.css" rel="stylesheet">    <link href="/assets/lib/OwlCarousel2-2.2.1/dist/assets/owl.theme.default.min-becb0689b0a2530d9094bd9b350bdb30.css" rel="stylesheet">'), 'js_dom_ready' => array('    alert(1);')))), array('content' => array(object(__TwigTemplate_a6464b22a5c3082ce72451871b67a1c6), 'block_content'), 'cms_content' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_cms_content'), 'list_page' => array(object(__TwigTemplate_55dedf24b90149666227a25ec87911d8), 'block_list_page'), 'list_loader' => array(object(__TwigTemplate_55dedf24b90149666227a25ec87911d8), 'block_list_loader'), 'page_title' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_page_title'), 'title_container' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_title_container'), 'aside' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_aside'), 'js_files' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_js_files'), 'js_document_ready' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_js_document_ready')))
     (vendor/twig/twig/src/Template.php:402)
  at Twig\Template->yield(array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => array('page' => object(Page), 'data' => array('zones' => array(array('entry_author_aside' => object(Zone))), 'css_content' => array('    <link href="/assets/lib/OwlCarousel2-2.2.1/dist/assets/owl.carousel.min-e75f09b058dfc96b7d8fcafdf21ec723.css" rel="stylesheet">    <link href="/assets/lib/OwlCarousel2-2.2.1/dist/assets/owl.theme.default.min-becb0689b0a2530d9094bd9b350bdb30.css" rel="stylesheet">'), 'js_dom_ready' => array('    alert(1);')))), array('content' => array(object(__TwigTemplate_a6464b22a5c3082ce72451871b67a1c6), 'block_content'), 'cms_content' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_cms_content'), 'list_page' => array(object(__TwigTemplate_55dedf24b90149666227a25ec87911d8), 'block_list_page'), 'list_loader' => array(object(__TwigTemplate_55dedf24b90149666227a25ec87911d8), 'block_list_loader'), 'page_title' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_page_title'), 'title_container' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_title_container'), 'aside' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_aside'), 'js_files' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_js_files'), 'js_document_ready' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_js_document_ready')))
     (var/cache/dev/twig/50/503691fad1f9e9368e188098286fc9b9.php:73)
  at __TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb->doDisplay(array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository), 'page' => array('page' => object(Page), 'data' => array('zones' => array(array('entry_author_aside' => object(Zone))), 'css_content' => array('    <link href="/assets/lib/OwlCarousel2-2.2.1/dist/assets/owl.carousel.min-e75f09b058dfc96b7d8fcafdf21ec723.css" rel="stylesheet">    <link href="/assets/lib/OwlCarousel2-2.2.1/dist/assets/owl.theme.default.min-becb0689b0a2530d9094bd9b350bdb30.css" rel="stylesheet">'), 'js_dom_ready' => array('    alert(1);')))), array('list_page' => array(object(__TwigTemplate_55dedf24b90149666227a25ec87911d8), 'block_list_page'), 'list_loader' => array(object(__TwigTemplate_55dedf24b90149666227a25ec87911d8), 'block_list_loader'), 'page_title' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_page_title'), 'title_container' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_title_container'), 'cms_content' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_cms_content'), 'aside' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_aside'), 'js_files' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_js_files'), 'js_document_ready' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_js_document_ready')))
     (vendor/twig/twig/src/Template.php:402)
  at Twig\Template->yield(array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true, 'facebook_url' => 'https://www.facebook.com/tafsircenter', 'twitter_url' => 'https://twitter.com/tafsircenter', 'google_plus_url' => '0', 'youtube_url' => 'http://www.youtube.com/user/tafsirdotnet', 'telegram_url' => 'https://t.me/tafsircenter', 'snapchat_url' => '0', 'periscope_url' => 'https://www.periscope.tv/tafsircenter', 'tafsir_forum_url' => 'https://vb.tafsir.net/', 'tafsir_academy_url' => 'http://tafsiracademy.com/', 'thesaurus_url' => 'http://ioquranics.com/', 'tafsir_encyclopedia_url' => 'http://modoee.com/', 'allow_delete_old_site_entries' => '0', 'applications_url' => '0', 'contact_address' => 'المملكة العربية السعودية، الرياض، حي الياسمين -  طريق أنس بن مالك', 'contact_phone' => '966112109620+', 'contact_fax' => '966112109713+', 'contact_post_office_box' => '242199', 'contact_postal_code' => '11322', 'contact_website' => 'www.tafsir.net', 'contact_email' => '[email protected]', 'contact_latlng' => '24.819932,46.646717', 'consultation_alert_text' => 'يحدد مكمن الإشكال والاستفسار ويصاغ بدقة دون استطراد.
يحدد المطلوب ثانية بنهاية الاستشارة حتى لو تم ذكره سلفا في نصها.
تذكر كافة المعلومات العلمية التي يمكن أن تساعد في الإجابة عن الاستشارة بشكل صحيح.
يتم الرد على الاستشارة في غضون 15 يوما بحد أقصى وتنشر على الموقع بدون أسماء تبعا لموافقة صاحبها', 'consultation_alert_title' => 'تنبيهات', 'disclaimer' => '((المعلومات والآراء المقدَّمة هي للكتّاب، ولا تعبّر بالضرورة عن رأي الموقع أو أسرة مركز تفسير))', 'consultation_display_country' => '0', 'consultation_display_permission' => '0', 'dahyan_header_logo' => 'dahyan-logo-header.png', 'dahyan_url' => 'http://dhayan.net/portal/home.aspx', 'nominate_title' => 'نرشح لك', 'live_title' => 'بث مباشر', 'webmaster_email' => '[email protected]', 'monolog_email' => '[email protected]', 'international_marsad_url' => '0', 'tafsir_store_url' => 'https://tafsirstore.net/', 'dahyan_footer_logo' => 'logo-left.png', 'orientalism_1' => '255x170.png', 'orientalism_2' => '255x170.png', 'orientalism_3' => '255x170.png', 'orientalism_4' => '255x170.png', 'orientalism_5' => '255x170.png', 'multimedia_lessons' => null, 'mutimedia_clips' => null, 'multimedia_videos' => null, 'multimedia_photos' => null, 'website_title' => 'Tafsir Center for Quranic Studies | مركز تفسير للدراسات القرآنية', 'uploads_host' => '', 'feature_toggler' => object(FeatureToggler), 'supportedLocales' => array('ar'), 'menu_manager' => object(MenuManager), 'dashboard_manager' => object(DashboardManager), 'form_analyzer' => object(FormAnalyzer), 'wizard_manager' => object(WizardManager), 'custom_logo' => null, 'custom_stylesheet' => null, 'custom_javascript' => null, 'app' => object(AppVariable), 'runtime_config' => object(RuntimeParameterBag), 'content_conf' => object(ContentConfigurationResolver), 'viewers_conf' => object(ViewersConfigurationResolver), 'tafsir_repository' => object(CustomRepository)), array('list_page' => array(object(__TwigTemplate_55dedf24b90149666227a25ec87911d8), 'block_list_page'), 'list_loader' => array(object(__TwigTemplate_55dedf24b90149666227a25ec87911d8), 'block_list_loader'), 'page_title' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_page_title'), 'title_container' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_title_container'), 'cms_content' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_cms_content'), 'aside' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_aside'), 'js_files' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_js_files'), 'js_document_ready' => array(object(__TwigTemplate_646e2e99ee480ea410ccabfc14b0cdbb), 'block_js_document_ready')))
     (vendor/twig/twig/src/Template.php:358)
  at Twig\Template->display(array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true))
     (vendor/twig/twig/src/Template.php:373)
  at Twig\Template->render(array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true))
     (vendor/twig/twig/src/TemplateWrapper.php:51)
  at Twig\TemplateWrapper->render(array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true))
     (vendor/twig/twig/src/Environment.php:333)
  at Twig\Environment->render('@ContentManagement/Entry/author.html.twig', array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:448)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRenderView('@ContentManagement/Entry/author.html.twig', null, array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true), 'render')
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:453)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRender('@ContentManagement/Entry/author.html.twig', null, array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true), null, 'render')
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:253)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('@ContentManagement/Entry/author.html.twig', array('title' => ' أحمد إبراهيم هاني ', 'author' => object(Author), 'content_type' => null, 'list' => array(array('_type' => 'collection', '_id' => 652, 'entriesCount' => 1, 'activeEntryId' => 36378, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 09:11:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-27 09:11:00', 'lastUpdate' => '2025-06-27 09:15:06', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36375, 'entriesCount' => 1, 'activeEntryId' => 36375, 'view_order' => 65535, 'publishDate' => '2025-06-27', 'rank' => '2025-06-27 08:11:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 388, 'entriesCount' => 1, 'activeEntryId' => 36372, 'view_order' => 65535, 'publishDate' => '2025-06-26', 'rank' => '2025-06-26 21:22:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 21:22:00', 'lastUpdate' => '2025-06-26 21:23:05', 'entriesCount' => 3, 'viewsCount' => '0', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry), object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36364, 'view_order' => 65535, 'publishDate' => '2025-06-18', 'rank' => '2025-06-18 18:19:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'collection', '_id' => 661, 'entriesCount' => 1, 'activeEntryId' => 36360, 'view_order' => 65535, 'publishDate' => '2025-06-17', 'rank' => '2025-06-17 16:47:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-26 18:27:00', 'lastUpdate' => '2025-06-26 18:28:39', 'entriesCount' => 5, 'viewsCount' => '2707', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36356, 'entriesCount' => 1, 'activeEntryId' => 36356, 'view_order' => 65535, 'publishDate' => '2025-06-15', 'rank' => '2025-06-15 10:16:00', 'object' => object(Entry)), array('_type' => 'collection', '_id' => 658, 'entriesCount' => 1, 'activeEntryId' => 36347, 'view_order' => 65535, 'publishDate' => '2025-06-11', 'rank' => '2025-06-11 08:09:00', 'object' => array(object(Collection), 'lastAddition' => '2025-06-11 08:09:00', 'lastUpdate' => '2025-06-11 08:12:16', 'entriesCount' => 2, 'viewsCount' => '16', 'averageRate' => '0.0000'), 'lastAdded' => array(object(Entry)), 'activeEntry' => object(Entry)), array('_type' => 'entry', '_id' => 36320, 'entriesCount' => 1, 'activeEntryId' => 36320, 'view_order' => 65535, 'publishDate' => '2020-06-25', 'rank' => '2020-06-25 14:23:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36314, 'entriesCount' => 1, 'activeEntryId' => 36314, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 16:33:00', 'object' => object(Entry)), array('_type' => 'entry', '_id' => 36318, 'entriesCount' => 1, 'activeEntryId' => 36318, 'view_order' => 65535, 'publishDate' => '2020-05-05', 'rank' => '2020-05-05 14:42:00')), 'isLastPage' => true))
     (vendor/rawafed/content-management-bundle/src/Controller/EntryController.php:491)
  at Rawafed\ContentManagementBundle\Controller\EntryController->authorAction(object(Request), object(Author), null, null)
     (vendor/symfony/http-kernel/HttpKernel.php:181)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:197)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/var/www/html/tafsir/vendor/autoload_runtime.php')
     (public/index.php:5)