Beans_Lessc::sortProps PHP Method

sortProps() protected method

protected sortProps ( $props, $split = false )
    protected function sortProps($props, $split = false)
    {
        $vars = array();
        $imports = array();
        $other = array();
        foreach ($props as $prop) {
            switch ($prop[0]) {
                case "assign":
                    if (isset($prop[1][0]) && $prop[1][0] == $this->vPrefix) {
                        $vars[] = $prop;
                    } else {
                        $other[] = $prop;
                    }
                    break;
                case "import":
                    $id = self::$nextImportId++;
                    $prop[] = $id;
                    $imports[] = $prop;
                    $other[] = array("import_mixin", $id);
                    break;
                default:
                    $other[] = $prop;
            }
        }
        if ($split) {
            return array(array_merge($vars, $imports), $other);
        } else {
            return array_merge($vars, $imports, $other);
        }
    }