PHP Classes

PHP INI Editor Class: View and edit INI files in Web forms

Recommend this page to a friend!
  Info   View files Example   Screenshots Screenshots   View files View files (4)   DownloadInstall with Composer Download .zip   Reputation   Support forum (1)   Blog    
Last Updated Ratings Unique User Downloads Download Rankings
2017-04-14 (3 years ago) RSS 2.0 feedNot enough user ratingsTotal: 401 All time: 6,435 This week: 423Up
Version License PHP version Categories
inieditor 1.0.3GNU General Publi...5PHP 5, Files and Folders, Content man..., C..., P...
Description Author

This class can be used to view and edit INI files in Web forms.

It generates HTML and JavaScript using jQuery and Bootstrap to display INI files, as well let the user interactively edit the INI files sections and variable values.

It provides means to add sections, fields and values of types: text, boolean, array.

The edited version is saved to a given in the destination directory. The previous version is saved to a backup file before saving a new version.

Recommendations

read and write ini file
Create a web page that manages a .ini file

Innovation Award
PHP Programming Innovation award nominee
February 2017
Number 5


Prize: 1 year subscription to the Basic Plan of an API product of choice
This INI format is very popular for storing and retrieving configuration information.

There are many packages for editing INI files. This package provide an interactive way to edit INI files using Web forms to display and edit INI files sections and configuration values.

Manuel Lemos
Name: Blupixel IT Srl <contact>
Classes: 1 package by
Country: Italy Italy
Innovation award
Innovation award
Nominee: 1x

 

Details
/* -------------------------------------------------------------------
 * 
 * Author: Blupixel IT Srl
 * Last Modifcation Date: 23 Jan 2017
 * Website: www.blupixelit.eu
 * support at: support@blupixelit.eu
 * 
 * Copyright (c) 2017 Blupixel IT Srl - Trento (Italy)
 * 
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 * 
 * This class provide an easy editor for ini files
 * 
 * Use it as described in the sample.php file or using the code below
 * Remeber to give write permission to the ini file and to the backup folder
 * 
 */
 
 Example of use:
 <?php
 
        include('IniEditor.class.php');

		// initialize the class object
		$ini_editor = new IniEditor();

		// include Javascript and CSS from jQuery and Bootstrap CDN
		echo IniEditor::getCssJsInclude();
		
		// include class CSS (use your own if you prefer)
		echo IniEditor::getCSS();

		// set folder where to put backups before saving the new version of the file (folder needs write permissions)
		$ini_editor->setBackupFolder('backups');
		
		// set different Scanner Mode (optional)
		$ini_editor->setScannerMode(INI_SCANNER_RAW);
		
		// set the path of the file you want to edit or view
		$ini_editor->setIniFile('default.ini');
		
		// set to true to allow edit of the config file (default is true)
		$ini_editor->enableEdit(true);
				
		// set to true to allow add of sections and conf in the config file (default is true)
		$ini_editor->enableAdd(true);
		
		// set to true to allow delete of conf in the config file (default is true)
		$ini_editor->enableDelete(true);


		// print the form. Use $ini_editor->getForm() to store it in a variable
		$ini_editor->printForm();
		
 ?>
 
Screenshots  
  • Screenshot_edit.png
  • Screenshot2.png
  • Screenshot.png
  Files folder image Files  
File Role Description
Accessible without login Plain text file default.ini Data .ini file example
Plain text file IniEditor.class.php Class Main class of the package
Accessible without login Plain text file README.txt Doc. Readme file
Accessible without login Plain text file sample.php Example Use sample file

 Version Control Unique User Downloads Download Rankings  
 0%
Total:401
This week:0
All time:6,435
This week:423Up

For more information send a message to info at phpclasses dot org.