Magento 2: -How to get product reviews, each review with a starget review rating star by product id magentoGet product collection filter by from and to date in magento2.Magento 2: How to override newsletter Subscriber modelMagento 2: Plugin class does not existHaving trouble exporting products from Magento 2.x. Fatal error: Uncaught Error: Call to a member function getName()Review star issueMagento 2 get custom attribute of a single product inside a pluginMagento2 REST API get all customers detailsMagento 2.3.0 - The store that was requested wasn't foundMagento 2.3.0 - Set up multiple websites, stores, and store views

Minimum value of 4 digit number divided by sum of its digits

Why do Computer Science majors learn Calculus?

Why the difference in metal between 銀行 and お金?

What is the relationship between spectral sequences and obstruction theory?

Phrase for the opposite of "foolproof"

Why we can't write in air?

Who and which - What to choose when we are referring to a choice between two or more things or persons

How to verbalise code in Mathematica?

How to get a plain text file version of a CP/M .BAS (M-BASIC) program?

How do Bards prepare spells?

Examples of non trivial equivalence relations , I mean equivalence relations without the expression " same ... as" in their definition?

If a warlock with the Repelling Blast invocation casts Eldritch Blast and hits, must the targets always be pushed back?

How can Republicans who favour free markets, consistently express anger when they don't like the outcome of that choice?

A ​Note ​on ​N!

What is the strongest case that can be made in favour of the UK regaining some control over fishing policy after Brexit?

Are Boeing 737-800’s grounded?

How can governments justify taking income tax on earnings, and then taking more tax on spending?

Please, smoke with good manners

What happened to Captain America in Endgame?

How do we know that ממחרת השבת means from the first day of pesach and not the seventh?

Who is the Umpire in this picture?

How can I practically buy stocks?

Stop and Take a Breath!

How exactly does Hawking radiation decrease the mass of black holes?



Magento 2: -How to get product reviews, each review with a star


get review rating star by product id magentoGet product collection filter by from and to date in magento2.Magento 2: How to override newsletter Subscriber modelMagento 2: Plugin class does not existHaving trouble exporting products from Magento 2.x. Fatal error: Uncaught Error: Call to a member function getName()Review star issueMagento 2 get custom attribute of a single product inside a pluginMagento2 REST API get all customers detailsMagento 2.3.0 - The store that was requested wasn't foundMagento 2.3.0 - Set up multiple websites, stores, and store views






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








3















<?php
$objectManager = MagentoFrameworkAppObjectManager::getInstance();
$product = $objectManager->get('MagentoFrameworkRegistry')->registry('current_product');
$storeManager = $objectManager->get('MagentoStoreModelStoreManagerInterface');
$currentStoreId = $storeManager->getStore()->getId();
$rating = $objectManager->get("MagentoReviewModelResourceModelReviewCollectionFactory");
$reviewFactory = $objectManager->create('MagentoReviewModelReview');

$collection = $rating->create()->addStoreFilter(
$currentStoreId
)->addStatusFilter(
MagentoReviewModelReview::STATUS_APPROVED
)->addEntityFilter(
'product',
$product->getId()
)->setDateOrder();
$reviewlist = $collection->getData();
foreach ($reviewlist as $review)

echo "<pre/>";
print_r($review);



#######################################################



Output
[review_id] =>
[created_at] =>
[entity_id] =>
[entity_pk_value] =>
[status_id] =>
[detail_id] =>
[title] =>
[detail] =>
[nickname] =>
[customer_id] =>
[entity_code] =>


In that I can not get the review star per review with the help of object manager.
enter image description hereI want highlighted box value










share|improve this question
























  • first of all, objectmanager is a bad idea to implement.

    – Shyam Krishna Sreekumar
    Jan 31 '18 at 10:20











  • I know that, but can you help with my issue?@ShyamKrishnaSreekumar

    – Kushal Dani
    Jan 31 '18 at 10:24


















3















<?php
$objectManager = MagentoFrameworkAppObjectManager::getInstance();
$product = $objectManager->get('MagentoFrameworkRegistry')->registry('current_product');
$storeManager = $objectManager->get('MagentoStoreModelStoreManagerInterface');
$currentStoreId = $storeManager->getStore()->getId();
$rating = $objectManager->get("MagentoReviewModelResourceModelReviewCollectionFactory");
$reviewFactory = $objectManager->create('MagentoReviewModelReview');

$collection = $rating->create()->addStoreFilter(
$currentStoreId
)->addStatusFilter(
MagentoReviewModelReview::STATUS_APPROVED
)->addEntityFilter(
'product',
$product->getId()
)->setDateOrder();
$reviewlist = $collection->getData();
foreach ($reviewlist as $review)

echo "<pre/>";
print_r($review);



#######################################################



Output
[review_id] =>
[created_at] =>
[entity_id] =>
[entity_pk_value] =>
[status_id] =>
[detail_id] =>
[title] =>
[detail] =>
[nickname] =>
[customer_id] =>
[entity_code] =>


In that I can not get the review star per review with the help of object manager.
enter image description hereI want highlighted box value










share|improve this question
























  • first of all, objectmanager is a bad idea to implement.

    – Shyam Krishna Sreekumar
    Jan 31 '18 at 10:20











  • I know that, but can you help with my issue?@ShyamKrishnaSreekumar

    – Kushal Dani
    Jan 31 '18 at 10:24














3












3








3








<?php
$objectManager = MagentoFrameworkAppObjectManager::getInstance();
$product = $objectManager->get('MagentoFrameworkRegistry')->registry('current_product');
$storeManager = $objectManager->get('MagentoStoreModelStoreManagerInterface');
$currentStoreId = $storeManager->getStore()->getId();
$rating = $objectManager->get("MagentoReviewModelResourceModelReviewCollectionFactory");
$reviewFactory = $objectManager->create('MagentoReviewModelReview');

$collection = $rating->create()->addStoreFilter(
$currentStoreId
)->addStatusFilter(
MagentoReviewModelReview::STATUS_APPROVED
)->addEntityFilter(
'product',
$product->getId()
)->setDateOrder();
$reviewlist = $collection->getData();
foreach ($reviewlist as $review)

echo "<pre/>";
print_r($review);



#######################################################



Output
[review_id] =>
[created_at] =>
[entity_id] =>
[entity_pk_value] =>
[status_id] =>
[detail_id] =>
[title] =>
[detail] =>
[nickname] =>
[customer_id] =>
[entity_code] =>


In that I can not get the review star per review with the help of object manager.
enter image description hereI want highlighted box value










share|improve this question
















<?php
$objectManager = MagentoFrameworkAppObjectManager::getInstance();
$product = $objectManager->get('MagentoFrameworkRegistry')->registry('current_product');
$storeManager = $objectManager->get('MagentoStoreModelStoreManagerInterface');
$currentStoreId = $storeManager->getStore()->getId();
$rating = $objectManager->get("MagentoReviewModelResourceModelReviewCollectionFactory");
$reviewFactory = $objectManager->create('MagentoReviewModelReview');

$collection = $rating->create()->addStoreFilter(
$currentStoreId
)->addStatusFilter(
MagentoReviewModelReview::STATUS_APPROVED
)->addEntityFilter(
'product',
$product->getId()
)->setDateOrder();
$reviewlist = $collection->getData();
foreach ($reviewlist as $review)

echo "<pre/>";
print_r($review);



#######################################################



Output
[review_id] =>
[created_at] =>
[entity_id] =>
[entity_pk_value] =>
[status_id] =>
[detail_id] =>
[title] =>
[detail] =>
[nickname] =>
[customer_id] =>
[entity_code] =>


In that I can not get the review star per review with the help of object manager.
enter image description hereI want highlighted box value







magento2 review object-manager






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 31 '18 at 11:56







Kushal Dani

















asked Jan 31 '18 at 9:44









Kushal DaniKushal Dani

920223




920223












  • first of all, objectmanager is a bad idea to implement.

    – Shyam Krishna Sreekumar
    Jan 31 '18 at 10:20











  • I know that, but can you help with my issue?@ShyamKrishnaSreekumar

    – Kushal Dani
    Jan 31 '18 at 10:24


















  • first of all, objectmanager is a bad idea to implement.

    – Shyam Krishna Sreekumar
    Jan 31 '18 at 10:20











  • I know that, but can you help with my issue?@ShyamKrishnaSreekumar

    – Kushal Dani
    Jan 31 '18 at 10:24

















first of all, objectmanager is a bad idea to implement.

– Shyam Krishna Sreekumar
Jan 31 '18 at 10:20





first of all, objectmanager is a bad idea to implement.

– Shyam Krishna Sreekumar
Jan 31 '18 at 10:20













I know that, but can you help with my issue?@ShyamKrishnaSreekumar

– Kushal Dani
Jan 31 '18 at 10:24






I know that, but can you help with my issue?@ShyamKrishnaSreekumar

– Kushal Dani
Jan 31 '18 at 10:24











3 Answers
3






active

oldest

votes


















1















Try to use bellow code in your phtml file You should not use the ObjectManager directly!




<?php
$productId = 'your_product_id';
$objectManager = MagentoFrameworkAppObjectManager::getInstance();
$reviewFactory = $objectManager->create('MagentoReviewModelReview');
$product = $objectManager->create('MagentoCatalogModelProduct')->load($productId);
$storeManager = $objectManager->create('MagentoStoreModelStoreManagerInterface');
$storeId = $storeManager->getStore()->getStoreId();
$reviewFactory->getEntitySummary($product, $storeId);

$ratingSummary = $product->getRatingSummary()->getRatingSummary();
$reviewCount = $product->getRatingSummary()->getReviewsCount();
?>
<?php if($ratingSummary) ?>
<div class="product-reviews-summary short">
<div class="rating-summary">
<div title="<?php echo (int)$ratingSummary; ?>%" class="rating-result">
<span style="width:<?php echo (int)$ratingSummary; ?>%"><span><?php echo (int)$ratingSummary; ?>%</span></span>
</div>
</div>
<div class="reviews-actions">
<?php echo __('('.$reviewCount.') Reviews'); ?>
</div>
</div>
<?php ?>





share|improve this answer























  • I used this code and get an overall rating amount, but i want individual rating value and also updated question.@Chander Shekhar

    – Kushal Dani
    Jan 31 '18 at 11:57


















1














you need to call $collection->load()->addRateVotes();, than get ratings
for each review by calling $review->getRatingVotes();






share|improve this answer






























    1















    I found one link that helps to get a collection of each review



     <?php 
    use MagentoFrameworkAppBootstrap;
    require __DIR__ . '/app/bootstrap.php';
    $bootstrap = Bootstrap::create(BP, $_SERVER);
    $obj = $bootstrap->getObjectManager();
    $state = $obj->get('MagentoFrameworkAppState');
    $state->setAreaCode('frontend');

    $reviewId = 5; //custom review id.
    $ratingCollection = $obj->get('MagentoReviewModelResourceModelRatingOptionVoteCollection')
    ->addRatingInfo()
    ->addOptionInfo()
    ->addRatingOptions()
    ->addFieldToFilter('review_id',$reviewId);
    print_r($ratingCollection->getData());





    share|improve this answer

























      Your Answer








      StackExchange.ready(function()
      var channelOptions =
      tags: "".split(" "),
      id: "479"
      ;
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function()
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled)
      StackExchange.using("snippets", function()
      createEditor();
      );

      else
      createEditor();

      );

      function createEditor()
      StackExchange.prepareEditor(
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: false,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: null,
      bindNavPrevention: true,
      postfix: "",
      imageUploader:
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      ,
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      );



      );













      draft saved

      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f211668%2fmagento-2-how-to-get-product-reviews-each-review-with-a-star%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      3 Answers
      3






      active

      oldest

      votes








      3 Answers
      3






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      1















      Try to use bellow code in your phtml file You should not use the ObjectManager directly!




      <?php
      $productId = 'your_product_id';
      $objectManager = MagentoFrameworkAppObjectManager::getInstance();
      $reviewFactory = $objectManager->create('MagentoReviewModelReview');
      $product = $objectManager->create('MagentoCatalogModelProduct')->load($productId);
      $storeManager = $objectManager->create('MagentoStoreModelStoreManagerInterface');
      $storeId = $storeManager->getStore()->getStoreId();
      $reviewFactory->getEntitySummary($product, $storeId);

      $ratingSummary = $product->getRatingSummary()->getRatingSummary();
      $reviewCount = $product->getRatingSummary()->getReviewsCount();
      ?>
      <?php if($ratingSummary) ?>
      <div class="product-reviews-summary short">
      <div class="rating-summary">
      <div title="<?php echo (int)$ratingSummary; ?>%" class="rating-result">
      <span style="width:<?php echo (int)$ratingSummary; ?>%"><span><?php echo (int)$ratingSummary; ?>%</span></span>
      </div>
      </div>
      <div class="reviews-actions">
      <?php echo __('('.$reviewCount.') Reviews'); ?>
      </div>
      </div>
      <?php ?>





      share|improve this answer























      • I used this code and get an overall rating amount, but i want individual rating value and also updated question.@Chander Shekhar

        – Kushal Dani
        Jan 31 '18 at 11:57















      1















      Try to use bellow code in your phtml file You should not use the ObjectManager directly!




      <?php
      $productId = 'your_product_id';
      $objectManager = MagentoFrameworkAppObjectManager::getInstance();
      $reviewFactory = $objectManager->create('MagentoReviewModelReview');
      $product = $objectManager->create('MagentoCatalogModelProduct')->load($productId);
      $storeManager = $objectManager->create('MagentoStoreModelStoreManagerInterface');
      $storeId = $storeManager->getStore()->getStoreId();
      $reviewFactory->getEntitySummary($product, $storeId);

      $ratingSummary = $product->getRatingSummary()->getRatingSummary();
      $reviewCount = $product->getRatingSummary()->getReviewsCount();
      ?>
      <?php if($ratingSummary) ?>
      <div class="product-reviews-summary short">
      <div class="rating-summary">
      <div title="<?php echo (int)$ratingSummary; ?>%" class="rating-result">
      <span style="width:<?php echo (int)$ratingSummary; ?>%"><span><?php echo (int)$ratingSummary; ?>%</span></span>
      </div>
      </div>
      <div class="reviews-actions">
      <?php echo __('('.$reviewCount.') Reviews'); ?>
      </div>
      </div>
      <?php ?>





      share|improve this answer























      • I used this code and get an overall rating amount, but i want individual rating value and also updated question.@Chander Shekhar

        – Kushal Dani
        Jan 31 '18 at 11:57













      1












      1








      1








      Try to use bellow code in your phtml file You should not use the ObjectManager directly!




      <?php
      $productId = 'your_product_id';
      $objectManager = MagentoFrameworkAppObjectManager::getInstance();
      $reviewFactory = $objectManager->create('MagentoReviewModelReview');
      $product = $objectManager->create('MagentoCatalogModelProduct')->load($productId);
      $storeManager = $objectManager->create('MagentoStoreModelStoreManagerInterface');
      $storeId = $storeManager->getStore()->getStoreId();
      $reviewFactory->getEntitySummary($product, $storeId);

      $ratingSummary = $product->getRatingSummary()->getRatingSummary();
      $reviewCount = $product->getRatingSummary()->getReviewsCount();
      ?>
      <?php if($ratingSummary) ?>
      <div class="product-reviews-summary short">
      <div class="rating-summary">
      <div title="<?php echo (int)$ratingSummary; ?>%" class="rating-result">
      <span style="width:<?php echo (int)$ratingSummary; ?>%"><span><?php echo (int)$ratingSummary; ?>%</span></span>
      </div>
      </div>
      <div class="reviews-actions">
      <?php echo __('('.$reviewCount.') Reviews'); ?>
      </div>
      </div>
      <?php ?>





      share|improve this answer














      Try to use bellow code in your phtml file You should not use the ObjectManager directly!




      <?php
      $productId = 'your_product_id';
      $objectManager = MagentoFrameworkAppObjectManager::getInstance();
      $reviewFactory = $objectManager->create('MagentoReviewModelReview');
      $product = $objectManager->create('MagentoCatalogModelProduct')->load($productId);
      $storeManager = $objectManager->create('MagentoStoreModelStoreManagerInterface');
      $storeId = $storeManager->getStore()->getStoreId();
      $reviewFactory->getEntitySummary($product, $storeId);

      $ratingSummary = $product->getRatingSummary()->getRatingSummary();
      $reviewCount = $product->getRatingSummary()->getReviewsCount();
      ?>
      <?php if($ratingSummary) ?>
      <div class="product-reviews-summary short">
      <div class="rating-summary">
      <div title="<?php echo (int)$ratingSummary; ?>%" class="rating-result">
      <span style="width:<?php echo (int)$ratingSummary; ?>%"><span><?php echo (int)$ratingSummary; ?>%</span></span>
      </div>
      </div>
      <div class="reviews-actions">
      <?php echo __('('.$reviewCount.') Reviews'); ?>
      </div>
      </div>
      <?php ?>






      share|improve this answer












      share|improve this answer



      share|improve this answer










      answered Jan 31 '18 at 11:15









      Chander ShekharChander Shekhar

      586317




      586317












      • I used this code and get an overall rating amount, but i want individual rating value and also updated question.@Chander Shekhar

        – Kushal Dani
        Jan 31 '18 at 11:57

















      • I used this code and get an overall rating amount, but i want individual rating value and also updated question.@Chander Shekhar

        – Kushal Dani
        Jan 31 '18 at 11:57
















      I used this code and get an overall rating amount, but i want individual rating value and also updated question.@Chander Shekhar

      – Kushal Dani
      Jan 31 '18 at 11:57





      I used this code and get an overall rating amount, but i want individual rating value and also updated question.@Chander Shekhar

      – Kushal Dani
      Jan 31 '18 at 11:57













      1














      you need to call $collection->load()->addRateVotes();, than get ratings
      for each review by calling $review->getRatingVotes();






      share|improve this answer



























        1














        you need to call $collection->load()->addRateVotes();, than get ratings
        for each review by calling $review->getRatingVotes();






        share|improve this answer

























          1












          1








          1







          you need to call $collection->load()->addRateVotes();, than get ratings
          for each review by calling $review->getRatingVotes();






          share|improve this answer













          you need to call $collection->load()->addRateVotes();, than get ratings
          for each review by calling $review->getRatingVotes();







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Sep 4 '18 at 3:10









          HaiweraHaiwera

          133




          133





















              1















              I found one link that helps to get a collection of each review



               <?php 
              use MagentoFrameworkAppBootstrap;
              require __DIR__ . '/app/bootstrap.php';
              $bootstrap = Bootstrap::create(BP, $_SERVER);
              $obj = $bootstrap->getObjectManager();
              $state = $obj->get('MagentoFrameworkAppState');
              $state->setAreaCode('frontend');

              $reviewId = 5; //custom review id.
              $ratingCollection = $obj->get('MagentoReviewModelResourceModelRatingOptionVoteCollection')
              ->addRatingInfo()
              ->addOptionInfo()
              ->addRatingOptions()
              ->addFieldToFilter('review_id',$reviewId);
              print_r($ratingCollection->getData());





              share|improve this answer





























                1















                I found one link that helps to get a collection of each review



                 <?php 
                use MagentoFrameworkAppBootstrap;
                require __DIR__ . '/app/bootstrap.php';
                $bootstrap = Bootstrap::create(BP, $_SERVER);
                $obj = $bootstrap->getObjectManager();
                $state = $obj->get('MagentoFrameworkAppState');
                $state->setAreaCode('frontend');

                $reviewId = 5; //custom review id.
                $ratingCollection = $obj->get('MagentoReviewModelResourceModelRatingOptionVoteCollection')
                ->addRatingInfo()
                ->addOptionInfo()
                ->addRatingOptions()
                ->addFieldToFilter('review_id',$reviewId);
                print_r($ratingCollection->getData());





                share|improve this answer



























                  1












                  1








                  1








                  I found one link that helps to get a collection of each review



                   <?php 
                  use MagentoFrameworkAppBootstrap;
                  require __DIR__ . '/app/bootstrap.php';
                  $bootstrap = Bootstrap::create(BP, $_SERVER);
                  $obj = $bootstrap->getObjectManager();
                  $state = $obj->get('MagentoFrameworkAppState');
                  $state->setAreaCode('frontend');

                  $reviewId = 5; //custom review id.
                  $ratingCollection = $obj->get('MagentoReviewModelResourceModelRatingOptionVoteCollection')
                  ->addRatingInfo()
                  ->addOptionInfo()
                  ->addRatingOptions()
                  ->addFieldToFilter('review_id',$reviewId);
                  print_r($ratingCollection->getData());





                  share|improve this answer
















                  I found one link that helps to get a collection of each review



                   <?php 
                  use MagentoFrameworkAppBootstrap;
                  require __DIR__ . '/app/bootstrap.php';
                  $bootstrap = Bootstrap::create(BP, $_SERVER);
                  $obj = $bootstrap->getObjectManager();
                  $state = $obj->get('MagentoFrameworkAppState');
                  $state->setAreaCode('frontend');

                  $reviewId = 5; //custom review id.
                  $ratingCollection = $obj->get('MagentoReviewModelResourceModelRatingOptionVoteCollection')
                  ->addRatingInfo()
                  ->addOptionInfo()
                  ->addRatingOptions()
                  ->addFieldToFilter('review_id',$reviewId);
                  print_r($ratingCollection->getData());






                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited 13 mins ago

























                  answered Jan 31 '18 at 12:34









                  Kushal DaniKushal Dani

                  920223




                  920223



























                      draft saved

                      draft discarded
















































                      Thanks for contributing an answer to Magento Stack Exchange!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid


                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.

                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f211668%2fmagento-2-how-to-get-product-reviews-each-review-with-a-star%23new-answer', 'question_page');

                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      Best approach to update all entries in a list that is paginated?Best way to add items to a paginated listChoose Your Country: Best Usability approachUpdate list when a user is viewing the list without annoying themWhen would the best day to update your webpage be?What should happen when I add a Row to a paginated, sorted listShould I adopt infinite scrolling or classical pagination?How to show user that page objects automatically updateWhat is the best location to locate the comments section in a list pageBest way to combine filtering and selecting items in a listWhen one of two inputs must be updated to satisfy a consistency criteria, which should you update (if at all)?

                      Тонконіг бульбистий Зміст Опис | Поширення | Екологія | Господарське значення | Примітки | Див. також | Література | Джерела | Посилання | Навігаційне меню1114601320038-241116202404kew-435458Poa bulbosaЭлектронный каталог сосудистых растений Азиатской России [Електронний каталог судинних рослин Азіатської Росії]Малышев Л. Л. Дикие родичи культурных растений. Poa bulbosa L. - Мятлик луковичный. [Малишев Л. Л. Дикі родичи культурних рослин. Poa bulbosa L. - Тонконіг бульбистий.]Мятлик (POA) Сем. Злаки (Мятликовые) [Тонконіг (POA) Род. Злаки (Тонконогові)]Poa bulbosa Linnaeus, Sp. Pl. 1: 70. 1753. 鳞茎早熟禾 lin jing zao shu he (Description from Flora of China) [Poa bulbosa Linnaeus, Sp. Pl. 1: 70. 1753. 鳞茎早熟禾 lin jing zao shu he (Опис від Флора Китаю)]Poa bulbosa L. – lipnice cibulkatá / lipnica cibulkatáPoa bulbosa в базі даних Poa bulbosa на сайті Poa bulbosa в базі даних «Global Biodiversity Information Facility» (GBIF)Poa bulbosa в базі даних «Euro + Med PlantBase» — інформаційному ресурсі для Євро-середземноморського розмаїття рослинPoa bulbosa L. на сайті «Плантариум»

                      Вунгтау (аеропорт) Загальні відомості | Див. також | Посилання | Навігаційне меню10°22′00″ пн. ш. 107°05′00″ сх. д. / 10.36667° пн. ш. 107.08333° сх. д. / 10.36667; 107.0833310°22′00″ пн. ш. 107°05′00″ сх. д. / 10.36667° пн. ш. 107.08333° сх. д. / 10.36667; 107.083337731608Vinh AirportVinh airport facelift improves serviceвиправивши або дописавши їївиправивши або дописавши їїр