Вы можете использовать переменную $ view-> dom_id.Это уникальный идентификатор для этого экземпляра представлений.
В вашем файле .tpl.php:
<?php print $view->dom_id; ?>
Из комментариев в модулях \ views \ theme \ theme.inc:
<?php
// It is true that the DIV wrapper has classes denoting the name of the view
// and its display ID, but this is not enough to unequivocally match a view
// with its HTML, because one view may appear several times on the page. So
// we set up a hash with the current time, $dom_id, to issue a "unique" identifier for
// each view. This identifier is written to both Drupal.settings and the DIV
// wrapper.
?>