Ejemplo n.º 1
0
    /**
     * Checks if a theme is already installed.
     *
     * @param string $theme
     * @return bool
     */
    public static function isThemeInstalled($theme)
    {
        return (bool) BackendModeL::getDB()->getVar('SELECT COUNT(id)
			 FROM themes_templates
			 WHERE theme = ?', array($theme));
    }
Ejemplo n.º 2
0
 /**
  * Checks if a theme is already installed.
  *
  * @param string $theme
  *
  * @return bool
  */
 public static function isThemeInstalled($theme)
 {
     return (bool) BackendModeL::getContainer()->get('database')->getVar('SELECT 1
          FROM themes_templates
          WHERE theme = ?
          LIMIT 1', array($theme));
 }