Contributions API

Calling all Drupal developers!

Help us get this on the first page of Digg. DIGG NOW!

Modules in 6

views_ui_js_load

Definition

views_ui_js_load($js)
contributions/views/views_ui.module, line 298

Description

Check to see if the incoming menu item is js capable or not.

Code

<?php
function views_ui_js_load($js) {
  if ($js == 'ajax') {
    return TRUE;
  }
  return 0;
}
?>