Esempio n. 1
0
 /**
  *
  */
 private function parse_post()
 {
     if (@$_SERVER['REQUEST_METHOD'] != 'POST') {
         $this->pd = (object) [];
         $this->fd = (object) [];
         return;
     }
     $_POST = array_map(ns('stripslashes_deep'), $_POST);
     $this->pd = (object) @$_POST;
     $this->fd = (object) (@$_FILES ?: []);
 }
Esempio n. 2
0
/**
 * Default setup routine
 *
 * @uses add_action()
 * @uses do_action()
 *
 * @return void
 */
function setup()
{
    function ns($function)
    {
        return __NAMESPACE__ . "\\{$function}";
    }
    add_action('init', ns('init'));
    add_action(__NAMESPACE__ . '\\init', ns('i18n'));
    //activate current version of this plugin
    add_action('admin_init', ns('activate'));
    do_action(__NAMESPACE__ . '\\loaded');
    //add data to wp_send_json_*
    add_filter('pp-ajax-data', ns('tack_on_ajax_response'));
}
Esempio n. 3
0
    <div id="main-content" class="region clearfix">
      <?php 
print render($page['content']);
?>
    </div>

    <?php 
print $feed_icons;
?>
  </div>

<?php 
if ($page['sidebar_first']) {
    ?>
  <div id="sidebar-left" class="column sidebar region grid-4 <?php 
    print ns('pull-12', $page['sidebar_second'], 3);
    ?>
">
    <?php 
    print render($page['sidebar_first']);
    ?>
  </div>
<?php 
}
?>

<?php 
if ($page['sidebar_second']) {
    ?>
  <div id="sidebar-right" class="column sidebar region grid-3">
    <?php 
    $main_sidebar_adjust_outer = "";
    $main_sidebar_adjust_inner = "";
} elseif ($left) {
    $main_sidebar_adjust_outer = "omega";
    $main_sidebar_adjust_inner = "container-padding-right";
} elseif ($right) {
    $main_sidebar_adjust_outer = "alpha";
    $main_sidebar_adjust_inner = "container-padding-left";
} else {
    $main_sidebar_adjust_outer = "alpha omega";
    $main_sidebar_adjust_inner = "container-padding-left container-padding-right";
}
?>
      
      <div id="main" class="column <?php 
print ns('grid-16', $left, 3, $right, 4) . ' ' . $main_sidebar_adjust_outer;
?>
">
        <div id="main-inner" class="<?php 
print $main_sidebar_adjust_inner;
?>
" >
        <?php 
if ($tabs) {
    ?>
			<?php 
    $path = explode('/', drupal_get_path_alias($_GET['q']));
    if ($path[0] != 'job-seeker') {
        ?>
          <div class="tabs"><?php 
        print $tabs;
Esempio n. 5
0
print $content_top;
?>
          <?php 
print $content;
?>
          <?php 
print $content_bottom;
?>
        </div>
      </div>

      <?php 
if ($left) {
    ?>
      <div id="sidebar-left" class="column sidebar region grid-4 <?php 
    print ns('pull-12', $right, 4);
    ?>
">
          <?php 
    print $left;
    ?>
      </div>
      <?php 
}
?>

      <?php 
if ($right) {
    ?>
      <div id="sidebar-right" class="column alpha sidebar region grid-4">
          <?php 
Esempio n. 6
0
      <div id="main-content" class="region clear-block">
        <?php 
print $content;
?>
      </div>

      <?php 
print $feed_icons;
?>
    </div>

  <?php 
if ($left) {
    ?>
    <div id="sidebar-left" class="column sidebar region grid-3 <?php 
    print ns('pull-13', $right, 3);
    ?>
">
      <?php 
    print $left;
    ?>
    </div>
  <?php 
}
?>

  <?php 
if ($right) {
    ?>
    <div id="sidebar-right" class="column sidebar region grid-3">
      <?php 
		<?php 
print $help;
?>
		<?php 
print $content;
?>
      	</div>
      	<?php 
print $feed_icons;
?>
    </div>
  <?php 
if ($left) {
    ?>
    <div id="sidebar-left" class="column sidebar region grid-2 <?php 
    print ns('pull-10', $right, 3);
    ?>
">
      <?php 
    print $left;
    ?>
    </div>
  <?php 
}
?>
  <?php 
if ($right) {
    ?>
    <div id="sidebar-right" class="column sidebar region grid-3">
      <?php 
    print $right;
Esempio n. 8
0
 function a($function)
 {
     add_action($function, ns($function));
 }
					</center><br /><div style="font-size: 10px;">Powered by <a href="http://www.bigprof.com/appgini/" target=_blank>BigProf AppGini 4.52</a></div>
				</div>
			</form>
		<?php 
    exit;
} else {
    // if connection is successful, save parameters into config.php
    if (!($fp = @fopen("./config.php", "w"))) {
        echo $divFormat . "<div style=\"color: red;\">" . $Translation["couldnt save config"] . "</div></div><br />";
        echo $backHome;
        exit;
    } else {
        fwrite($fp, "<?php\n");
        fwrite($fp, "\t\$dbServer='" . ns($dbServer) . "';\n");
        fwrite($fp, "\t\$dbUsername='******';\n");
        fwrite($fp, "\t\$dbPassword='******';\n");
        fwrite($fp, "\t\$dbDatabase='" . ns($dbDatabase) . "';\n");
        fwrite($fp, "?>");
        fclose($fp);
    }
}
$silent = false;
include "{$d}/updateDB.php";
if ($setupAlreadyRun) {
    echo "{$divFormat} {$Translation['setup performed']} " . @date('r', filemtime(dirname(__FILE__) . '/setup.md5')) . '<br /><br /></div>';
    echo "{$divFormat}<div style=\"font-size: 10px;\">" . $Translation["delete md5"] . "</div></div><br /><br />";
    echo $backHome;
    exit;
}
// go to index
echo $backHome;
Esempio n. 10
0
?>
        </div>
  
        <span class="grid-1 prefix-1">  
	  <?php 
print $feed_icons;
?>
        </span>
      </div>
      
  
      <?php 
if ($left) {
    ?>
        <div id="sidebar-left" class="sidebar grid-4 <?php 
    print ns('pull-11', $right, 3);
    ?>
">
          <?php 
    print $left;
    ?>
        </div>
      <?php 
}
?>

      <div id="sidebar-right" class="sidebar grid-4">
        <?php 
if ($right) {
    ?>
          <?php 
Esempio n. 11
0
          <?php 
    print $navigation;
    ?>

        </div></div> <!-- /.section, /#navigation -->
      <?php 
}
?>

    </div></div> <!-- /#main, /#main-wrapper -->

    <?php 
if ($sidebar_first) {
    ?>
      <div id="sidebar-first" class="column sidebar region grid-4 <?php 
    print ns('pull-12', $sidebar_second, 3);
    ?>
">
        <?php 
    print $sidebar_first;
    ?>
      </div>
    <?php 
}
?>

    <?php 
if ($sidebar_second) {
    ?>
      <div id="sidebar_second" class="column sidebar region grid-3">
        <?php 
Esempio n. 12
0
 /**
  *
  */
 private function control_request($i_controllerName, $i_action, array $i_params)
 {
     $filename_prefix = str_replace('-', '', $i_controllerName);
     $class_prefix = str_replace('-', '', $i_controllerName);
     if (!self::has_controller($filename_prefix)) {
         self::error_404('Controller not loaded');
     }
     $controller_class = ns($class_prefix . 'Controller');
     $controller = new $controller_class($i_action, $i_params);
     if (!$controller->is_valid_action($i_action)) {
         if ($i_action != 'index') {
             array_unshift($i_params, $i_action);
             $i_action = 'index';
             $controller = new $controller_class($i_action, $i_params);
         } else {
             self::error_404('Invalid action requested');
         }
     }
     $result = $controller->_call_action($i_action, $i_params);
     if (is_array($result)) {
         header('Content-Type: application/json');
         die(json_encode($result));
     }
     if (!self::load('view/' . $filename_prefix . '.php')) {
         return $result;
     }
     $view_class = ns($class_prefix . 'View');
     $view = new $view_class($controller);
     $output = $view->render();
     if ($output === false) {
         self::error_404('View rendered blank');
     }
     echo $output;
     exit;
 }
    if ($linked_logo_img) {
        print ' prefix-1';
    }
    ?>
">
          <?php 
    print $main_menu_links;
    ?>
        </div>
      <?php 
}
?>

        <!-- Replace language switch with return link -->
        <div id="language-switcher" class="grid-3 <?php 
print ns('prefix-9', $main_menu_links, 9);
?>
">
          <a href="javascript:window.history.back();"><?php 
print t('Return to BiblioBird');
?>
 &gt;&gt;</a>
        </div>
      </div>
    </div>

    <?php 
print $content;
?>
  </div>
Esempio n. 14
0
 /**
  * @dataProvider providerForTestNamespace
  */
 function testNamespace(string $src, string $expected)
 {
     $ts = TokenStream::fromSource($src);
     $this->parseSuccess($ts, token(T_OPEN_TAG), "T_OPEN_TAG(<?php )");
     $this->parseSuccess($ts, ns(), $expected);
 }
Esempio n. 15
0

  <?php 
if ($left) {
    ?>
    <div id="sidebar-left" class="column sidebar region grid-4">
      <?php 
    print $left;
    ?>
    </div>
  <?php 
}
?>

    <div id="main" class="column <?php 
print ns('grid-16', $left, 4, $right, 3);
?>
">
      <?php 
print $breadcrumb;
?>
      <?php 
if ($title) {
    ?>
        <h1 class="title" id="page-title"><?php 
    print $title;
    ?>
</h1>
      <?php 
}
?>
Esempio n. 16
0
      <div id="main-content" class="region clear-block">
        <?php 
print $content;
?>
      </div>

      <?php 
print $feed_icons;
?>
    </div>

  <?php 
if ($left) {
    ?>
    <div id="sidebar-left" class="column sidebar region grid-4 <?php 
    print ns('pull-12', $right, 3);
    ?>
">
      <?php 
    print $left;
    ?>
    </div>
  <?php 
}
?>

  <?php 
if ($right) {
    ?>
    <div id="sidebar-right" class="column sidebar region grid-3">
      <?php 
Esempio n. 17
0
    <div id="main-content" class="region clearfix">
      <?php 
print render($page['content']);
?>
    </div>

    <?php 
print $feed_icons;
?>
  </div>

<?php 
if ($page['sidebar_first']) {
    ?>
  <div id="sidebar-left" class="column sidebar region grid-3 <?php 
    print ns('pull-13', $page['sidebar_second'], 5);
    ?>
">
    <?php 
    print render($page['sidebar_first']);
    ?>
  </div>
<?php 
}
?>

<?php 
if ($page['sidebar_second']) {
    ?>
  <div id="sidebar-right" class="column sidebar region grid-5">
    <?php 
Esempio n. 18
0
/**
 * The dynamic_region_builder function will be used to pass important zones
 * like the content regions where the regions sent to the function MUST appear
 * inline, and advanced calculations need to be done in order to display the as such
 *
 * Stacked regions are not possible using this function, and should be passed through
 * static_region_builder() instead.
 */
function dynamic_region_builder($region_data, $container_width, $vars) {
  // let's cycle the region data, and determine what we have
  foreach ($region_data AS $region => $info) {
    // if we do have content for this region, let's create it.
    if (isset($info['data'])) {
      if (isset($info['primary'])) {
        $width = $container_width;
        $vars[$region . '_classes'] = ns('grid-' . _omega_dynamic_widths($width, $info['related'], $vars));
      }
      else {
        $width = $info['width'];
        $vars[$region . '_classes'] = ns('grid-' . $info['width']);
      }
      // we know we have stuff to put here, so we can check for push & pull options
      if ($info['pull']) {
        // looks like we do wanna pull, or this value would have been false, so let's boogie
        $vars[$region . '_classes'] .= ' ' . ns('pull-' . _omega_dynamic_zones($info['pull']['width'], $info['pull']['conditions'], $vars));
      }
      if ($info['push']) {
        // looks like a push
        $vars[$region . '_classes'] .= ' ' . ns('push-' . _omega_dynamic_zones($info['push']['width'], $info['push']['conditions'], $vars));
      }
    }
    // currently ignored becuase we have not given prefix/suffix class options
    // to the primary content zones... this will become active again later
    if (isset($info['spacing'])) {
      foreach ($info['spacing'] AS $attribute => $value) {
        if ($value) {
          $vars[$region . '_classes'] .= ' ' . $attribute . '-' . $value;
        }
      }
    }
    // \unused prefix/suffix stuffs
  }
  return $vars;
}
              </div> <!-- /#main-content -->

              <?php 
print $feed_icons;
?>



            </div> <!-- // #content-inner -->
          </div> <!-- //#content -->

          <?php 
if ($left) {
    ?>
          <div id="sidebar-left" class="column sidebar region grid-4 <?php 
    print ns('pull-12');
    ?>
">
                  <div id="sidebar-left-inner">
              <?php 
    print $left;
    ?>
            </div>
          </div> <!-- //end #sidebar-left-inner -->
          <?php 
}
?>

          <?php 
if ($right && $is_front) {
    ?>
Esempio n. 20
0
      <div id="main-content" class="region clear-block">
        <?php 
print $content;
?>
      </div>

      <?php 
print $feed_icons;
?>
    </div>

  <?php 
if ($left) {
    ?>
    <div id="sidebar-left" class="column sidebar region grid-3 <?php 
    print ns('pull-9', $right, 3);
    ?>
">
      <?php 
    print $left;
    ?>
    </div>
  <?php 
}
?>

  <?php 
if ($right) {
    ?>
    <div id="sidebar-right" class="column sidebar region grid-3">
      <?php 
Esempio n. 21
0
if ($left) {
    ?>
      <div id="sidebar-left" class="column sidebar region grid-2 <?php 
    print ns('pull-8', !$right, 2);
    ?>
">
        <?php 
    print $left;
    ?>
      </div>
    <?php 
}
?>

      <div id="sidebar-right" class="column sidebar region <?php 
print ns('grid-4', $left, 2);
?>
">
        <?php 
print $right;
?>
      </div>
    </div>

    <div id="footer-wrapper">
      <div id="footer" class="container-12 prefix-1 suffix-1">
        <div id="copyright">Copyright &copy; 2010, 2011 Lingwo International</div>
        <?php 
if ($footer) {
    ?>
          <div id="footer-region" class="region grid-10 clear-block">