я хочу, чтобы получить данные которым объект в другом budnle: Twig в MainBundle: сущностьTwig загрузить данные из объекта в другом пучке
{% extends 'MainBundle:eshop:main.html.twig' %}
{% set products = getClassVars(Product) %}
{% block body %}
<div class="container main-container">
<!-- Main component call to action -->
<div id="productslider" class="owl-carousel owl-theme">
<?php $em= $this->getDoctrine()->getManager();?>
<?php $products= $em
->getRepository('ProductBundle:Product')->findAll(); ?>
{%
for product in products %}
{% if date(product.createdDate)> date('-1days') %}
<div class="item">
<div class="product">
<a class="add-fav tooltipHere" data-toggle="tooltip"
data-original-title="Add to Wishlist"
data-placement="left">
<i class="glyphicon glyphicon-heart"></i>
</a>
<div class="image">
<div class="quickview">
<a data-toggle="modal" class="btn btn-xs btn-quickview" href="ajax/product.html"
data-target="#productSetailsModalAjax">Quick View </a>
</div>
<a href="{{ asset('app_dev.php/product/')~product.id~"/show" }}"><img
class="img-responsive" alt="img"
src="{{ asset('bundles/imageproducts/')~ product.imageName }}"
height="250" width="200"></a>
<div class="promotion"><span class="discount">15% OFF</span></div>
</div>
<div class="description">
<h4>
<a href="{{ asset('app_dev.php/product/')~product.id~"/show" }}">{{ product.libelle }} </a>
</h4>
<div class="grid-description">
<p>{{ product.libelle }} </p>
</div>
<div class="list-description">
<p> {{ product.description }}</p>
</div>
<span class="size">XL/XXL/S </span></div>
<div class="price"><span>$25</span></div>
<div class="action-control"><a class="btn btn-primary"> <span class="add2cart"><i
class="glyphicon glyphicon-shopping-cart"> </i> Add to cart </span>
</a></div>
</div>
</div>
{% endif %}
{% endfor %}
</div>
</div>
</div>
{% endblock %}
продукта:
<?php
namespace ProductBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use Doctrine\ORM\Mapping\JoinColumn;
use Doctrine\ORM\Mapping\ManyToOne;
use Doctrine\ORM\Mapping\OneToMany;
use Symfony\Component\HttpFoundation\File\File;
use Vich\UploaderBundle\Mapping\Annotation as Vich;
use ProductBundle\Repository\ProductRepository;
/**
* Produit
* @ORM\Entity(repositoryClass="\ProductBundle\Repository\ProductRepository")
* @Vich\Uploadable
* @ORM\Table(name="produit")
*/
class Product
{
/**
* @ORM\GeneratedValue
* @ORM\Id
* @ORM\Column(type="integer")
*/
private $id;
Неизвестный " getClassVars ".
что мне делать, любая помощь пожалуйста. игнорировать это: khvjhvljhbvljhbljhbljhbjhbljhbjhbljhb
я изменил в моем контроллере в User controller для загрузки продуктов, где Product в разных пакетах, мне не нужно было добавлять какие-либо примечания –