• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP get_ini函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中get_ini函数的典型用法代码示例。如果您正苦于以下问题:PHP get_ini函数的具体用法?PHP get_ini怎么用?PHP get_ini使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了get_ini函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: cpu

    function cpu($id)
    {
        $this->id = $id;
        // Get the disk informations
        $q0 = get_link()->prepare('SELECT 
									c.id AS ID,
									c.logical_id AS LOGICALID,
									c.max_clock_speed AS MAXCLOCKSPEED,
									c.name AS NAME,
									c.created_date AS CREATED_DATE,
									c.created_id AS CREATED_ID,
									c.edited_date AS EDITED_DATE,
									c.edited_id AS EDITED_ID,
									c.deleted_date AS DELETED_DATE,
									c.deleted_id AS DELETED_ID
								FROM ' . get_ini('BDD_PREFIX') . 'cmdb_dev_os_cpu c 
								WHERE id=:id AND deleted_date=0');
        $q0->execute(array('id' => $id));
        $r0 = $q0->fetch(PDO::FETCH_OBJ);
        if (isset($r0->ID)) {
            $this->logicalId = $r0->LOGICALID;
            $this->maxClockSpeed = $r0->MAXCLOCKSPEED;
            $this->name = $r0->NAME;
            $this->createdDate = $r0->CREATED_DATE;
            $this->createdID = $r0->CREATED_ID;
            $this->editedDate = $r0->EDITED_DATE;
            $this->editedId = $r0->EDITED_ID;
            $this->deletedDate = $r0->DELETED_DATE;
            $this->deltedId = $r0->DELETED_ID;
        } else {
            // TODO add log management
            echo 'The cpu does not exist.';
            exit(100);
        }
    }
开发者ID:Julien-SIMON,项目名称:GobelinsLab,代码行数:35,代码来源:_cpu.class.php


示例2: environment

    function environment($id)
    {
        $this->id = $id;
        // Get the disk informations
        $q0 = get_link()->prepare('SELECT 
									e.id AS ID,
									e.id_parent AS ID_PARENT,
									e.name AS NAME,
									e.created_date AS CREATED_DATE,
									e.created_id AS CREATED_ID,
									e.edited_date AS EDITED_DATE,
									e.edited_id AS EDITED_ID,
									e.deleted_date AS DELETED_DATE,
									e.deleted_id AS DELETED_ID
								FROM ' . get_ini('BDD_PREFIX') . 'cmdb_environments e 
								WHERE id=:id AND deleted_date=0');
        $q0->execute(array('id' => $id));
        $r0 = $q0->fetch(PDO::FETCH_OBJ);
        if (isset($r0->ID)) {
            $this->parentId = $r0->ID_PARENT;
            $this->name = $r0->NAME;
            $this->createdDate = $r0->CREATED_DATE;
            $this->createdID = $r0->CREATED_ID;
            $this->editedDate = $r0->EDITED_DATE;
            $this->editedId = $r0->EDITED_ID;
            $this->deletedDate = $r0->DELETED_DATE;
            $this->deltedId = $r0->DELETED_ID;
        } else {
            // TODO add log management
            echo 'The environment don\'t exist.';
            exit(100);
        }
    }
开发者ID:Julien-SIMON,项目名称:GobelinsLab,代码行数:33,代码来源:_environment.class.php


示例3: perform

 function perform(&$request, &$response)
 {
     $object_data =& fetch_requested_object($request);
     $ini =& get_ini('image_variations.ini');
     $image_variations = $ini->get_all();
     foreach ($image_variations as $key => $value) {
         if (array_key_exists($key, $_GET)) {
             $variation = $key;
             break;
         }
     }
     if (empty($variation)) {
         $variation = 'thumbnail';
     }
     $image = $object_data['variations'][$variation];
     if (!$image) {
         $response->header("Content-type: image/gif");
         $response->readfile(SHARED_DIR . 'images/1x1.gif');
         if ($variation == 'original') {
             $request->set_status(REQUEST_STATUS_FAILURE);
             return;
         } else {
             $response->commit();
             //for speed
         }
     }
     if (!file_exists(MEDIA_DIR . $image['media_id'] . '.media')) {
         $response->header("HTTP/1.1 404 Not found");
         if ($variation == 'original') {
             $request->set_status(REQUEST_STATUS_FAILURE);
             return;
         } else {
             $response->commit();
             //for speed
         }
     }
     if (isset($_SERVER['HTTP_IF_NONE_MATCH']) && $_SERVER['HTTP_IF_NONE_MATCH'] == $image['etag']) {
         $response->use_client_cache();
         $response->header("Pragma: public");
         $response->header("Cache-Control: private");
         $response->header("Date: " . date("D, d M Y H:i:s") . " GMT");
         $response->header("Etag: {$image['etag']}");
     } else {
         $response->header("Pragma: public");
         $response->header("Cache-Control: private");
         $response->header("Date: " . date("D, d M Y H:i:s") . " GMT");
         $response->header("Etag: {$image['etag']}");
         $response->header("Content-type: {$image['mime_type']}");
         $response->header("Content-Disposition: filename={$image['file_name']}");
         $response->readfile(MEDIA_DIR . $image['media_id'] . '.media');
     }
     if ($variation == 'original') {
         return;
     } else {
         $response->commit();
         //for speed
     }
 }
开发者ID:BackupTheBerlios,项目名称:limb-svn,代码行数:58,代码来源:display_image_action.class.php


示例4: _init_dataspace

 function _init_dataspace(&$request)
 {
     parent::_init_dataspace($request);
     $ini =& get_ini('image_variations.ini');
     $image_variations = $ini->get_all();
     foreach ($image_variations as $variation => $variation_data) {
         $this->dataspace->set('upload_' . $variation . '_max_size', isset($variation_data['max_size']) ? $variation_data['max_size'] : '');
         $this->dataspace->set('generate_' . $variation . '_max_size', isset($variation_data['max_size']) ? $variation_data['max_size'] : '');
     }
 }
开发者ID:BackupTheBerlios,项目名称:limb-svn,代码行数:10,代码来源:create_image_action.class.php


示例5: _init_dataspace

 function _init_dataspace()
 {
     parent::_init_dataspace();
     $ini =& get_ini('image_variations.ini');
     $image_variations = $ini->get_named_array();
     foreach ($image_variations as $variation => $variation_data) {
         $this->_set('upload_' . $variation . '_max_size', isset($variation_data['max_size']) ? $variation_data['max_size'] : '');
         $this->_set('generate_' . $variation . '_max_size', isset($variation_data['max_size']) ? $variation_data['max_size'] : '');
     }
 }
开发者ID:BackupTheBerlios,项目名称:limb-svn,代码行数:10,代码来源:create_image_action.class.php


示例6: _load_jobs

 function _load_jobs()
 {
     $ini =& get_ini('cron.ini');
     $this->jobs = array();
     $groups = $ini->get_all();
     foreach ($groups as $group => $data) {
         if (strpos($group, 'cron-job') === 0) {
             $this->jobs[$group] = $data;
         }
     }
 }
开发者ID:BackupTheBerlios,项目名称:limb-svn,代码行数:11,代码来源:cron_manager.class.php


示例7: run

 function run(&$filter_chain, &$request, &$response)
 {
     debug::add_timing_point('jip filter started');
     $fetcher =& fetcher::instance();
     $fetcher->set_jip_status(false);
     $user =& user::instance();
     if ($user->is_logged_in()) {
         $ini =& get_ini('jip_groups.ini');
         if ($user->is_in_groups(array_keys($ini->get_group('groups')))) {
             $fetcher->set_jip_status(true);
         }
     }
     debug::add_timing_point('jip filter done');
     $filter_chain->next();
 }
开发者ID:BackupTheBerlios,项目名称:limb-svn,代码行数:15,代码来源:jip_filter.class.php


示例8: _get_variation

 function _get_variation(&$request)
 {
     $ini =& get_ini('image_variations.ini');
     $image_variations = $ini->get_all();
     foreach ($image_variations as $key => $value) {
         if ($request->has_attribute($key)) {
             $variation = $key;
             break;
         }
     }
     if (empty($variation)) {
         $variation = 'thumbnail';
     }
     return $variation;
 }
开发者ID:BackupTheBerlios,项目名称:limb-svn,代码行数:15,代码来源:display_image_action.class.php


示例9: _get_variation

 function _get_variation()
 {
     $ini =& get_ini('image_variations.ini');
     $image_variations = $ini->get_all();
     foreach ($image_variations as $key => $value) {
         if (array_key_exists($key, $_GET)) {
             $variation = $key;
             break;
         }
     }
     if (empty($variation)) {
         $variation = 'thumbnail';
     }
     return $variation;
 }
开发者ID:BackupTheBerlios,项目名称:limb-svn,代码行数:15,代码来源:display_image_action.class.php


示例10: disk

    function disk($id)
    {
        $this->id = $id;
        // Get the disk informations
        $q0 = get_link()->prepare('SELECT 
									d.id AS ID,
									d.name AS NAME,
									d.interfacetype AS INTERFACETYPE,
									d.disk_size AS TOTALSIZE,
									d.caption AS CAPTION,
									d.firmwarerevision AS FIRMWAREREVISION,
									d.manufacturer AS MANUFACTURER,
									d.model AS MODEL,
									d.serialnumber AS SERIALNUMBER,
									d.created_date AS CREATED_DATE,
									d.created_id AS CREATED_ID,
									d.edited_date AS EDITED_DATE,
									d.edited_id AS EDITED_ID,
									d.deleted_date AS DELETED_DATE,
									d.deleted_id AS DELETED_ID
								FROM ' . get_ini('BDD_PREFIX') . 'cmdb_dev_os_disks d 
								WHERE id=:id AND deleted_date=0');
        $q0->execute(array('id' => $id));
        $r0 = $q0->fetch(PDO::FETCH_OBJ);
        if (isset($r0->ID)) {
            $this->name = $r0->NAME;
            $this->interfaceType = $r0->INTERFACETYPE;
            $this->totalSize = $r0->TOTALSIZE;
            $this->caption = $r0->CAPTION;
            $this->firmwareRevision = $r0->FIRMWAREREVISION;
            $this->manufacturer = $r0->MANUFACTURER;
            $this->model = $r0->MODEL;
            $this->serialNumber = $r0->SERIALNUMBER;
            $this->createdDate = $r0->CREATED_DATE;
            $this->createdID = $r0->CREATED_ID;
            $this->editedDate = $r0->EDITED_DATE;
            $this->editedId = $r0->EDITED_ID;
            $this->deletedDate = $r0->DELETED_DATE;
            $this->deltedId = $r0->DELETED_ID;
        } else {
            // TODO add log management
            echo 'The disk does not exist.';
            exit(100);
        }
    }
开发者ID:Julien-SIMON,项目名称:GobelinsLab,代码行数:45,代码来源:_disk.class.php


示例11: objects

 function objects($id)
 {
     $this->id = $id;
     // Get the disk informations
     $q0 = get_link()->prepare("SELECT \n\t\t\t\t\t\t\t\t\tobj.id AS ID,\n\t\t\t\t\t\t\t\t\tobj.created_date AS CREATED_DATE,\n\t\t\t\t\t\t\t\t\tobj.created_id AS CREATED_ID,\n\t\t\t\t\t\t\t\t\tobj.edited_date AS EDITED_DATE,\n\t\t\t\t\t\t\t\t\tobj.edited_id AS EDITED_ID,\n\t\t\t\t\t\t\t\t\tobj.deleted_date AS DELETED_DATE,\n\t\t\t\t\t\t\t\t\tobj.deleted_id AS DELETED_ID\n\t\t\t\t\t\t\t\tFROM " . get_ini('BDD_PREFIX') . "core_objects obj \n\t\t\t\t\t\t\t\tWHERE obj.id=:id");
     $q0->execute(array('id' => $id));
     $r0 = $q0->fetch(PDO::FETCH_OBJ);
     if (isset($r0->ID)) {
         $this->createdDate = $r0->CREATED_DATE;
         $this->createdID = $r0->CREATED_ID;
         $this->editedDate = $r0->EDITED_DATE;
         $this->editedId = $r0->EDITED_ID;
         $this->deletedDate = $r0->DELETED_DATE;
         $this->deltedId = $r0->DELETED_ID;
     } else {
         // TODO add log management
         echo 'The disk don\'t exist.';
         exit(100);
     }
 }
开发者ID:Julien-SIMON,项目名称:GobelinsLab,代码行数:20,代码来源:_object.class.php


示例12: service

    function service($id)
    {
        $this->id = $id;
        // Get the disk informations
        $q0 = get_link()->prepare('SELECT 
									s.id AS ID,
									s.name AS NAME,
									s.path_name AS PATHNAME,
									s.start_mode AS STARTMODE,
									s.service_state AS SERVICESTATE,
									s.owner AS OWNER,
									s.created_date AS UP_CREATED_DATE,
									s.created_id AS UP_CREATED_ID,
									s.created_date AS CREATED_DATE,
									s.created_id AS CREATED_ID,
									s.edited_date AS EDITED_DATE,
									s.edited_id AS EDITED_ID,
									s.deleted_date AS DELETED_DATE,
									s.deleted_id AS DELETED_ID
								FROM ' . get_ini('BDD_PREFIX') . 'cmdb_dev_os_services s
								WHERE s.id=:id AND s.deleted_date=0');
        $q0->execute(array('id' => $id));
        $r0 = $q0->fetch(PDO::FETCH_OBJ);
        if (isset($r0->ID)) {
            $this->name = $r0->NAME;
            $this->pathName = $r0->PATHNAME;
            $this->startMode = $r0->STARTMODE;
            $this->serviceState = $r0->SERVICESTATE;
            $this->owner = $r0->OWNER;
            $this->createdDate = $r0->CREATED_DATE;
            $this->createdID = $r0->CREATED_ID;
            $this->editedDate = $r0->EDITED_DATE;
            $this->editedId = $r0->EDITED_ID;
            $this->deletedDate = $r0->DELETED_DATE;
            $this->deltedId = $r0->DELETED_ID;
        } else {
            // TODO add log management
            echo 'The service does not exist.';
            exit(100);
        }
    }
开发者ID:Julien-SIMON,项目名称:GobelinsLab,代码行数:41,代码来源:_service.class.php


示例13: eventLog

 function eventLog($id)
 {
     $this->id = $id;
     // Get the disk informations
     $q0 = get_link()->prepare("SELECT \n\t\t\t\t\t\t\t\t\tev.id AS ID,\n\t\t\t\t\t\t\t\t\tev.log_statement AS LOGSTATEMENT,\n\t\t\t\t\t\t\t\t\tpg.name AS PLUGIN,\n\t\t\t\t\t\t\t\t\tev.created_date AS CREATED_DATE,\n\t\t\t\t\t\t\t\t\tev.created_id AS CREATED_ID,\n\t\t\t\t\t\t\t\t\tev.edited_date AS EDITED_DATE,\n\t\t\t\t\t\t\t\t\tev.edited_id AS EDITED_ID,\n\t\t\t\t\t\t\t\t\tev.deleted_date AS DELETED_DATE,\n\t\t\t\t\t\t\t\t\tev.deleted_id AS DELETED_ID\n\t\t\t\t\t\t\t\tFROM \n\t\t\t\t\t\t\t\t" . get_ini('BDD_PREFIX') . "core_event_logs ev,\n\t\t\t\t\t\t\t\t" . get_ini('BDD_PREFIX') . "core_plugins pg\n\t\t\t\t\t\t\t\tWHERE \n\t\t\t\t\t\t\t\tev.id_plugin=pg.id AND\n\t\t\t\t\t\t\t\tev.id=:id");
     $q0->execute(array('id' => $id));
     $r0 = $q0->fetch(PDO::FETCH_OBJ);
     if (isset($r0->ID)) {
         $this->logStatement = $r0->LOGSTATEMENT;
         $this->plugin = $r0->PLUGIN;
         $this->createdDate = $r0->CREATED_DATE;
         $this->createdID = $r0->CREATED_ID;
         $this->editedDate = $r0->EDITED_DATE;
         $this->editedId = $r0->EDITED_ID;
         $this->deletedDate = $r0->DELETED_DATE;
         $this->deltedId = $r0->DELETED_ID;
     } else {
         // TODO add log management
         exit(100);
     }
 }
开发者ID:Julien-SIMON,项目名称:GobelinsLab,代码行数:21,代码来源:_event_log.class.php


示例14: access

 function access($id)
 {
     $this->id = $id;
     // Get the disk informations
     $q0 = get_link()->prepare("SELECT \n\t\t\t\t\t\t\t\t\tsec.id AS ID,\n\t\t\t\t\t\t\t\t\tsec.id_source AS IDSOURCE,\n\t\t\t\t\t\t\t\t\tsec.id_target AS IDTARGET,\n\t\t\t\t\t\t\t\t\tsec.secure_level AS SECURELEVEL,\n\t\t\t\t\t\t\t\t\tsec.created_date AS CREATED_DATE,\n\t\t\t\t\t\t\t\t\tsec.created_id AS CREATED_ID,\n\t\t\t\t\t\t\t\t\tsec.edited_date AS EDITED_DATE,\n\t\t\t\t\t\t\t\t\tsec.edited_id AS EDITED_ID,\n\t\t\t\t\t\t\t\t\tsec.deleted_date AS DELETED_DATE,\n\t\t\t\t\t\t\t\t\tsec.deleted_id AS DELETED_ID\n\t\t\t\t\t\t\t\tFROM " . get_ini('BDD_PREFIX') . "core_access sec \n\t\t\t\t\t\t\t\tWHERE sec.id=:id");
     $q0->execute(array('id' => $id));
     $r0 = $q0->fetch(PDO::FETCH_OBJ);
     if (isset($r0->ID)) {
         $this->secureLevel = $r0->SECURELEVEL;
         $this->createdDate = $r0->CREATED_DATE;
         $this->createdID = $r0->CREATED_ID;
         $this->editedDate = $r0->EDITED_DATE;
         $this->editedId = $r0->EDITED_ID;
         $this->deletedDate = $r0->DELETED_DATE;
         $this->deltedId = $r0->DELETED_ID;
     } else {
         // TODO add log management
         echo 'The access doesn\'t exist.';
         exit(100);
     }
 }
开发者ID:Julien-SIMON,项目名称:GobelinsLab,代码行数:21,代码来源:_access.class.php


示例15: table

 function table($id)
 {
     $this->id = $id;
     // Get the group informations
     $q0 = get_link()->prepare("SELECT \n\t\t\t\t\t\t\t\t\tt.id AS ID,\n\t\t\t\t\t\t\t\t\tt.name AS NAME,\n\t\t\t\t\t\t\t\t\tt.created_date AS CREATED_DATE,\n\t\t\t\t\t\t\t\t\tt.created_id AS CREATED_ID,\n\t\t\t\t\t\t\t\t\tt.edited_date AS EDITED_DATE,\n\t\t\t\t\t\t\t\t\tt.edited_id AS EDITED_ID,\n\t\t\t\t\t\t\t\t\tt.deleted_date AS DELETED_DATE,\n\t\t\t\t\t\t\t\t\tt.deleted_id AS DELETED_ID\n\t\t\t\t\t\t\t\tFROM " . get_ini('BDD_PREFIX') . "core_tables t \n\t\t\t\t\t\t\t\tWHERE t.id=:id");
     $q0->execute(array('id' => $id));
     $r0 = $q0->fetch(PDO::FETCH_OBJ);
     if (isset($r0->ID)) {
         $this->name = $r0->NAME;
         $this->createdDate = $r0->CREATED_DATE;
         $this->createdID = $r0->CREATED_ID;
         $this->editedDate = $r0->EDITED_DATE;
         $this->editedId = $r0->EDITED_ID;
         $this->deletedDate = $r0->DELETED_DATE;
         $this->deltedId = $r0->DELETED_ID;
     } else {
         // TODO add log management
         echo 'The table does not exist.';
         exit(100);
     }
 }
开发者ID:Julien-SIMON,项目名称:GobelinsLab,代码行数:21,代码来源:_table.class.php


示例16: authMethod

 function authMethod($id)
 {
     $this->id = $id;
     // Get the disk informations
     $q0 = get_link()->prepare("SELECT \n\t\t\t\t\t\t\t\t\tuam.id AS ID,\n\t\t\t\t\t\t\t\t\tuam.name AS NAME,\n\t\t\t\t\t\t\t\t\tuam.icon AS ICON,\n\t\t\t\t\t\t\t\t\tuam.created_date AS CREATED_DATE,\n\t\t\t\t\t\t\t\t\tuam.created_id AS CREATED_ID,\n\t\t\t\t\t\t\t\t\tuam.edited_date AS EDITED_DATE,\n\t\t\t\t\t\t\t\t\tuam.edited_id AS EDITED_ID,\n\t\t\t\t\t\t\t\t\tuam.deleted_date AS DELETED_DATE,\n\t\t\t\t\t\t\t\t\tuam.deleted_id AS DELETED_ID\n\t\t\t\t\t\t\t\tFROM " . get_ini('BDD_PREFIX') . "core_user_auth_methods uam \n\t\t\t\t\t\t\t\tWHERE uam.id=:id");
     $q0->execute(array('id' => $id));
     $r0 = $q0->fetch(PDO::FETCH_OBJ);
     if (isset($r0->ID)) {
         $this->name = $r0->NAME;
         $this->icon = $r0->ICON;
         $this->createdDate = $r0->CREATED_DATE;
         $this->createdID = $r0->CREATED_ID;
         $this->editedDate = $r0->EDITED_DATE;
         $this->editedId = $r0->EDITED_ID;
         $this->deletedDate = $r0->DELETED_DATE;
         $this->deltedId = $r0->DELETED_ID;
     } else {
         // TODO add log management
         echo 'The disk don\'t exist.';
         exit(100);
     }
 }
开发者ID:Julien-SIMON,项目名称:GobelinsLab,代码行数:22,代码来源:_auth_method.class.php


示例17: local

 function local($id)
 {
     $this->id = $id;
     // Get the disk informations
     $q0 = get_link()->prepare("SELECT \n\t\t\t\t\t\t\t\t\tloc.id AS ID,\n\t\t\t\t\t\t\t\t\tloc.short_name AS SHORT_NAME,\n\t\t\t\t\t\t\t\t\tloc.long_name AS LONG_NAME,\n\t\t\t\t\t\t\t\t\tloc.flag_path AS FLAG_PATH,\n\t\t\t\t\t\t\t\t\tloc.created_date AS CREATED_DATE,\n\t\t\t\t\t\t\t\t\tloc.created_id AS CREATED_ID,\n\t\t\t\t\t\t\t\t\tloc.edited_date AS EDITED_DATE,\n\t\t\t\t\t\t\t\t\tloc.edited_id AS EDITED_ID,\n\t\t\t\t\t\t\t\t\tloc.deleted_date AS DELETED_DATE,\n\t\t\t\t\t\t\t\t\tloc.deleted_id AS DELETED_ID\n\t\t\t\t\t\t\t\tFROM \n\t\t\t\t\t\t\t\t" . get_ini('BDD_PREFIX') . "core_locale loc\n\t\t\t\t\t\t\t\tWHERE \n\t\t\t\t\t\t\t\tloc.id = :id\n\t\t\t\t\t\t\t\t");
     $q0->execute(array('id' => $id));
     $r0 = $q0->fetch(PDO::FETCH_OBJ);
     if (isset($r0->ID)) {
         $this->shortName = $r0->SHORT_NAME;
         $this->longName = $r0->LONG_NAME;
         $this->flagPath = $r0->FLAG_PATH;
         $this->createdDate = $r0->CREATED_DATE;
         $this->createdID = $r0->CREATED_ID;
         $this->editedDate = $r0->EDITED_DATE;
         $this->editedId = $r0->EDITED_ID;
         $this->deletedDate = $r0->DELETED_DATE;
         $this->deletedId = $r0->DELETED_ID;
     } else {
         // TODO add log management
         echo 'The locale don\'t exist.';
         exit(100);
     }
 }
开发者ID:Julien-SIMON,项目名称:GobelinsLab,代码行数:23,代码来源:_locale.class.php


示例18: parameter

 function parameter($id)
 {
     $this->id = $id;
     // Get the disk informations
     $q0 = get_link()->prepare("SELECT \n\t\t\t\t\t\t\t\t\tparam.id AS ID,\n\t\t\t\t\t\t\t\t\tparam.id_plugin AS ID_PLUGIN,\n\t\t\t\t\t\t\t\t\tparam.name AS NAME,\n\t\t\t\t\t\t\t\t\tparam.parameter_value AS PARAMETER_VALUE,\n\t\t\t\t\t\t\t\t\tparam.default_value AS DEFAULT_VALUE,\n\t\t\t\t\t\t\t\t\tparam.created_date AS CREATED_DATE,\n\t\t\t\t\t\t\t\t\tparam.created_id AS CREATED_ID,\n\t\t\t\t\t\t\t\t\tparam.edited_date AS EDITED_DATE,\n\t\t\t\t\t\t\t\t\tparam.edited_id AS EDITED_ID,\n\t\t\t\t\t\t\t\t\tparam.deleted_date AS DELETED_DATE,\n\t\t\t\t\t\t\t\t\tparam.deleted_id AS DELETED_ID\n\t\t\t\t\t\t\t\tFROM " . get_ini('BDD_PREFIX') . "core_parameters param \n\t\t\t\t\t\t\t\tWHERE param.id=:id");
     $q0->execute(array('id' => $id));
     $r0 = $q0->fetch(PDO::FETCH_OBJ);
     if (isset($r0->ID)) {
         $this->idPlugin = $r0->ID_PLUGIN;
         $this->name = $r0->NAME;
         $this->parameterValue = $r0->PARAMETER_VALUE;
         $this->defaultValue = $r0->DEFAULT_VALUE;
         $this->createdDate = $r0->CREATED_DATE;
         $this->createdID = $r0->CREATED_ID;
         $this->editedDate = $r0->EDITED_DATE;
         $this->editedId = $r0->EDITED_ID;
         $this->deletedDate = $r0->DELETED_DATE;
         $this->deltedId = $r0->DELETED_ID;
     } else {
         // TODO add log management
         echo 'The parameter don\'t exist.';
         exit(100);
     }
 }
开发者ID:Julien-SIMON,项目名称:GobelinsLab,代码行数:24,代码来源:_parameter.class.php


示例19: parameter

 function parameter($id)
 {
     $this->id = $id;
     // Get the disk informations
     $q0 = get_link()->prepare("SELECT \n\t\t\t\t\t\t\t\t\ttrans.id AS ID,\n\t\t\t\t\t\t\t\t\ttrans.id_plugin AS ID_PLUGIN,\n\t\t\t\t\t\t\t\t\ttrans.id_locale AS ID_LOCALE,\n\t\t\t\t\t\t\t\t\ttrans.index_translation AS INDEX_TRANSLATION,\n\t\t\t\t\t\t\t\t\ttrans.translation AS TRANSLATION,\n\t\t\t\t\t\t\t\t\ttrans.created_date AS CREATED_DATE,\n\t\t\t\t\t\t\t\t\ttrans.created_id AS CREATED_ID,\n\t\t\t\t\t\t\t\t\ttrans.edited_date AS EDITED_DATE,\n\t\t\t\t\t\t\t\t\ttrans.edited_id AS EDITED_ID,\n\t\t\t\t\t\t\t\t\ttrans.deleted_date AS DELETED_DATE,\n\t\t\t\t\t\t\t\t\ttrans.deleted_id AS DELETED_ID\n\t\t\t\t\t\t\t\tFROM " . get_ini('BDD_PREFIX') . "core_translation trans \n\t\t\t\t\t\t\t\tWHERE trans.id=:id");
     $q0->execute(array('id' => $id));
     $r0 = $q0->fetch(PDO::FETCH_OBJ);
     if (isset($r0->ID)) {
         $this->idPlugin = $r0->ID_PLUGIN;
         $this->idLocale = $r0->ID_LOCALE;
         $this->indexTranslation = $r0->INDEX_TRANSLATION;
         $this->translation = $r0->TRANSLATION;
         $this->createdDate = $r0->CREATED_DATE;
         $this->createdID = $r0->CREATED_ID;
         $this->editedDate = $r0->EDITED_DATE;
         $this->editedId = $r0->EDITED_ID;
         $this->deletedDate = $r0->DELETED_DATE;
         $this->deletedId = $r0->DELETED_ID;
     } else {
         // TODO add log management
         echo 'The translation don\'t exist.';
         exit(100);
     }
 }
开发者ID:Julien-SIMON,项目名称:GobelinsLab,代码行数:24,代码来源:_translation.class.php


示例20: __construct

 public function __construct($cache = false, $design = 'base', $lang = 'fr', $loadStructure = true)
 {
     $this->infos = array('design' => $design, 'lang' => $lang);
     if (isset($_SERVER['PHP_SELF'])) {
         $urlPage = $_SERVER['PHP_SELF'];
     } elseif (isset($_SERVER['SCRIPT_NAME'])) {
         $urlPage = $_SERVER['PHP_SELF'];
     } else {
         $urlPage = '/accueil/index.php';
     }
     $elementsUrl = explode('/', $urlPage);
     $this->infos['module'] = $elementsUrl[count($elementsUrl) - 2];
     $this->infos['page'] = basename($urlPage, '.php');
     if (!$cache) {
         $this->cache = NULL;
     } else {
         $this->cache = $cache;
     }
     $this->defaultParams['lang'] = DEFAULT_LANG;
     $this->defaultParams['theme'] = DEFAULT_DESIGN;
     $this->defaultParams['module'] = DEFAULT_MODULE;
     if (!is_dir(ROOT . 'designs/' . $this->infos['design'] . '/')) {
         $this->infos['design'] = 'base';
     }
     define('DESIGN', ROOTU . 'designs/' . $this->infos['design'] . '/');
     if ($loadStructure === true) {
         $iniDesign = is_file(ROOT . 'designs/' . $this->infos['design'] . '/design.ini') ? get_ini('designs/' . $this->infos['design'] . '/design.ini') : get_ini('designs/base/design.ini');
         foreach ($iniDesign['config']['menus'] as $nameMenu) {
             $menuData = new MenusConstructor($nameMenu);
             $this->menus[$nameMenu] = $menuData->parse_menus($menuData->getContent());
         }
         $this->extract_infos();
         $this->organization['footer'] = $iniDesign['config']['footer'];
         $this->organization['header'] = $iniDesign['config']['header'];
     }
 }
开发者ID:xtrem-creative,项目名称:legacy_php-framework,代码行数:36,代码来源:config.class.php



注:本文中的get_ini函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP get_ini_option函数代码示例发布时间:2022-05-15
下一篇:
PHP get_info函数代码示例发布时间:2022-05-15
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap