You are here

function sassy_compass__is_position_list in Sassy 7.3

Same name and namespace in other branches
  1. 7.2 extensions/compass/functions/constants.inc \sassy_compass__is_position_list()

File

sassy_compass/functions/constants.inc, line 10

Code

function sassy_compass__is_position_list($position) {
  $list = array();
  foreach (func_get_args() as $pos) {
    $list = array_merge($list, sassy_compass__list($pos, ' '));
  }
  foreach ($list as $el) {
    if (!in_array($el, array(
      'top',
      'left',
      'bottom',
      'right',
    ))) {
      return new SassBoolean(FALSE);
    }
  }
  return new SassBoolean(TRUE);
}