Sha256: 75f56d2fd63dcdfdef2ba0860ab01ac52e1dbbdfdc0bd1ef998f0458d9f176e9

Contents?: true

Size: 775 Bytes

Versions: 7

Compression:

Stored size: 775 Bytes

Contents

<?

  function is_edit_mode() {
    global $c;
    if ($c->isEditMode()) {
      echo "edit-mode";
    }
  }

  function is_logged_in() {
    global $u;
    if ($u -> isLoggedIn ()) {
      echo "logged-in";
    }
  }

  function has_blocks($area) {
    global $c;
    return $area->getTotalBlocksInArea($c) > 0;
  }

  function image_tag($t, $img, $html_options = false) {
    $imgPath = ($t->getThemePath()) . "/images/";
    if ($html_options) {
      $options = " alt='" . explode(".", $img, 2)[0] . "'";
      foreach ($html_options as $k => $v) {
        $options .= " " . $k . "='" . addslashes($v) . "'";
      }
    } else {
      $options = " alt='" . explode(".", $img, 2)[0] . "'";
    };
    echo "<img src='" . $imgPath . $img . "'" . $options . " />";
  }

?>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
pave-0.11.2 templates/themes/blank/includes/view_helpers.php
pave-0.11.1 templates/themes/blank/includes/view_helpers.php
pave-0.12.0.rc3 templates/themes/blank/includes/view_helpers.php
pave-0.12.0.rc2 templates/themes/blank/includes/view_helpers.php
pave-0.12.0.rc1 templates/themes/blank/includes/view_helpers.php
pave-0.11.0 templates/themes/blank/includes/view_helpers.php
pave-0.10.1 templates/themes/blank/includes/view_helpers.php