ipd.php 423 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * Get roadmaps by products.
  4. *
  5. * @param array|string $products
  6. * @param string $status
  7. * @access public
  8. * @return array
  9. */
  10. public function getRoadmapPairs($products, $status = 'launched')
  11. {
  12. return $this->dao->select('id,name')->from(TABLE_ROADMAP)
  13. ->where('product')->in($products)
  14. ->andWhere('deleted')->eq(0)
  15. ->andWhere('status')->in($status)
  16. ->fetchPairs();
  17. }