Beispiel #1
0
 public function getRootFilesPathStr($server_id)
 {
     return root_APPPATH() . $this->getRootFilesPathName();
 }
Beispiel #2
0
function root_framework_app_path()
{
    return root_APPPATH() . root_framework_dirname() . "/application/";
}
Beispiel #3
0
 public function __construct()
 {
     parent::__construct();
     $package_path = root_APPPATH() . "storemanager_api/v1/application/";
     $this->load->add_package_path($package_path);
 }
Beispiel #4
0
assets/img/video/poster.jpg" data-setup="{}">
            <source src="http://iurevych.github.com/Flat-UI-videos/big_buck_bunny.mp4" type="video/mp4">
            <source src="http://iurevych.github.com/Flat-UI-videos/big_buck_bunny.webm" type="video/webm">
          </video>
        </div> <!-- /video -->
      </div>

      <div class="demo-row demo-illustrations">
        <div class="demo-title">
          <h3 class="demo-panel-title">Icons</h3>
        </div>

        <div class="demo-content-wide">
        <?php 
$svg_dir_url = $docs_dir_url . "assets/img/icons/";
$svg_dir_path = root_APPPATH() . "root_sitefiles/flat-ui/UI/pro/docs/assets/img/icons/";
$svs_files = scandir($svg_dir_path);
foreach ($svs_files as $key => $row) {
    if ($row != "." && $row != "..") {
        $svg_file_url = $svg_dir_url . $row;
        ?>
        		 <div><img src="<?php 
        echo $svg_file_url;
        ?>
" alt="" /></div>

        		<?php 
    }
}
?>
          </div><!-- /.demo-content -->
Beispiel #5
0
 public function getRootImagesPath($server_id)
 {
     return root_APPPATH() . $this->getRootImagePathName();
 }