Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
en:entwickler:changes_to_functions_and_methods [2016/12/25 15:30] ximexen:entwickler:changes_to_functions_and_methods [2022/04/15 20:11] (current) fasse
Line 3: Line 3:
 With this page we want to help plugin developers to stay compatible with the changes that were made in the Admidio core and that could affect plugins. During the development of Admidio we try to not change our existing methods and functions but sometimes it's necessary and could break your working plugin. Here you will find a list of methods and functions that we changed in a specific Admidio version with a notice how you could fix this in your plugin if you have used that method or function. With this page we want to help plugin developers to stay compatible with the changes that were made in the Admidio core and that could affect plugins. During the development of Admidio we try to not change our existing methods and functions but sometimes it's necessary and could break your working plugin. Here you will find a list of methods and functions that we changed in a specific Admidio version with a notice how you could fix this in your plugin if you have used that method or function.
  
-===== Admidio version 3.===== +===== Admidio version 4.=====
-=== New database class === +
-Within Admidio 3.1 we changed the database class. This was necessary because PHP7 knocks at the door and in this PHP version our used database functions were no longer supported. So we have rewritten the whole class and now use the PHP class [[https://secure.php.net/manual/en/book.pdo.php|PDO]] for database access. This is a powerful class that will also allow us to integrate some more database engines in the future much easier. Admidio has a new well documented implementation of the his [[https://www.admidio.org/dokusource/class_database.html|Database class]]. The Admidio database object **$gDb** is still available now with the new class. We also try to implement some compatibility methods for often used methods so there should be not much problems for existing code. +
  
-Some methods must be removed because they are no longer necessary or there is another (better) way to find a solution. Please check if you use some of them and find a way to replace them with the new methods. +=== Changes/Deprecations === 
-  * $gDb->data_seek() +== Class == 
-  $gDb->fetch_assoc()   - can be implemented with PdoStatement object +  * **Menu** renamed to **MainMenu** 
-  * $gDb->field_name() +== Class methods == 
-  $gDb->free_result()  - can be removed without new implementation +  * **HtmlPage->hasNavbar()** was removed 
-  * $gDb->num_fields() +  * **Email->adminNotification()**: 'Email->sendNotification()' 
-  $gDb->select_db()    - can be removed without new implementation +  * **Email->addBlindCopy()**: 'Email->addRecipient()'
-  * $gDb->server_info() +
-  $gDb->setCurrentDB()  - can be removed without new implementation+
  
-Some methods are marked as deprecatedYou can still use them but should switch to the new methods if there is time. Within our class documentation you will find hints how to implement the new methods: +===== Admidio version 4.1 =====
-  * $gDb->fetch_array() +
-  * $gDb->fetch_object() +
-  * $gDb->num_rows() +
-  * $gDb->insert_id()+
  
-=== New syntax in language files === +=== Call Admidio scripts with the UUID for user or role === 
-Within this version we use a new format for our translation files. Before it was an Admidio specific xml format. Now its the [[https://developer.android.com/guide/topics/resources/string-resource.html|Android String Resource]]. Version 3.1 will be still compatible to the old Admidio format but we encourage you to use the new formatThere is also small [[en:entwickler:how_to_make_your_plugin_translatable|How to for plugin developers]]We also changed the style of the placeholders within the stringsPlease have a look at [[en:entwickler:mehrsprachigkeit|Multilingualism]] for detailed description of the new syntax.+To prevend CSRF attacks as described in [[https://github.com/Admidio/admidio/issues/612|Issue 612]] we have introduce the UUID for the user and role objects. To call Admidio scripts that use the an id or as parameter you must now use the UUID. Therefore tables like **adm_users** and **adm_roles** got new columns **usr_uuid** and **rol_uuid** where you can get the uuid of the object instead of the **usr_id** or **rol_id**So if you want to call the profile of user you do it until now with the following url<code php>ADMIDIO_URLFOLDER_MODULES. '/profile/profile.php?usr_id=4711'</code> Now you must use the url with the following parameter <code php>ADMIDIO_URL. FOLDER_MODULES. '/profile/profile.php?user_uuid=bfa4db69-1722-4704-801f-e8b4bfe2f081'</code> We add a new method to the **TableAccess** class to read a record with the UUID<code php>$user = new User($gDb); 
 +$user->readDataByUuid($userUuid);</code> This Method could be used with all tables that have a **uuid** column. If you save a new record the **uuid** column will be filled automatically. You must do nothing and got a record with a uuid.
  
-=== Changes to DatetimeExtended class === +=== Call Admidio scripts with the UUID for user or role === 
-Since our requirements for PHP are changed to 5.3 we could use a lot of methods of the PHP class [[https://secure.php.net/manual/en/class.datetime.php|DateTime]]. Therefore we have removed methods from **DatetimeExtended** that were redundant. +The following methods are removed:\\  
-There are only 4 methods left: +**Session::renewMenuObject()**\\  
-  isValid() +**Session::renewOrganizationObject**\\  
-  getAge() +**Session::renewUserObject(int $userId = 0)**\\  
-  getWeekdays($weekday = 0) +New methods that could be used instead of them:\\  
-  getDateFormatForDatepicker($format = 'Y-m-d'+**Session::reloadAllSessions()**\\  
-If you have used other methods please change your script to use the official DateTime methods.+**Session::reloadSession(int $userId)**\\ 
  
-=== Other changes === + 
-The functions **admFuncGetFilenameExtension** and **admFuncGetFilenameWithoutExtension** are marked as deprecated and will be removed in future versions.+===== Admidio version 3.3 ===== 
 + 
 +=== Bootstrapping === 
 +Simplified the bootstrapping (initialization of the common Admidio stuff). 
 +Most stuff got extracted in separate **bootstrap.php**
 +Autoload is in it's own **autoload.php**
 +Now it could be enough to require only the **bootstrap.php** if you don't need a database connection. 
 + 
 +=== Prepared Statement === 
 +To improve the security move from **Database->query()** to the new **Database->queryPrepared()** method. You have to adapt the SQL queries and add the necessary parameters 
 + 
 +=== New === 
 +== Constants == 
 +  * **SCHEME**: 'http' or 'https' 
 +  * **COOKIE_PREFIX**: Unique prefix for cookies 
 +  * **DB_ENGINE**: 'mysql' or 'pgsql' 
 +  * **DB_HOST**: 'localhost' or '127.0.0.1' 
 +  * **DB_PORT**: null or port number 
 +  * **DB_NAME**: the database name 
 +  * **DB_USERNAME**: the database user 
 +  * **DB_PASSWORD**: the database user password 
 +== Classes == 
 +  * **PhpIniUtils**: Manages most of php-ini stuff 
 +  * **FileSystemUtils**: Manages nearly all FileSystem stuff like copy, move, ... 
 +  * **SettingsManager**: Manages the organization settings 
 + 
 +=== Changes/Deprecations === 
 +== Classes == 
 +  * **Folder**: Use FileSystemUtils instead 
 +  * **MyFiles**: Use FileSystemUtils instead 
 +== Class methods == 
 +  * **Email->adminNotfication()**: 'Email->adminNotification()' 
 +  * **Email::getMaxAttachementSize()**: 'Email::getMaxAttachmentSize()' 
 +  * **Language->addLanguageData()**: 'new Language()' 
 +  * **Language->addLanguagePath()**: 'Language->addLanguageFolderPath()' 
 +  * **Language->getCountryByCode()**: 'Language->getCountryName()' 
 +  * **Language->getCountryByName()**: 'Language->getCountryIsoCode()' 
 +  * **LanguageData->addLanguagePath()**: 'LanguageData->addLanguageFolderPath()' 
 +  * **LanguageData->getLanguagePaths()**: 'LanguageData->getLanguageFolderPaths()' 
 +  * **LanguageData->getCountriesArray()**: 'LanguageData->getCountries()' 
 +  * **LanguageData->setCountriesArray()**: 'LanguageData->setCountries()' 
 +  * **Message->showInModaleWindow()**: 'Message->showInModalWindow()' 
 +  * **Organization->getPreferences()**: 'Organization->getSettingsManager()->getAll()' 
 +  * **Organization->setPreferences()**: 'Organization->getSettingsManager()->setMulti()' 
 +  * **PhpIniUtils->isSafeModeEnabled()**: no replacement 
 +  * **TableFile->getCompletePathOfFile()**: 'TableFile->getFullFilePath()' 
 +  * **TableFolder->getCompletePathOfFolder()**: 'TableFolder->getFolderPath()' 
 +  * **TableRoles->viewRole()**: 'TableRoles->isVisible()' 
 +  * **User->columnsValueChanged()**: 'User->hasColumnsValueChanged()' 
 +== Class method params == 
 +  * **new AdmException('MSG', 'PARAM1', 'PARAM2')**: 'new AdmException('MSG', array('PARAM1', 'PARAM2'))' 
 +  * **AdmException->setNewMessage('ID', 'PARAM1', 'PARAM2')**: 'AdmException->setNewMessage('ID', array('PARAM1', 'PARAM2'))' 
 +  * **Language->get('ID', 'PARAM1', 'PARAM2')**: 'Language->get('ID', array('PARAM1', 'PARAM2'))' 
 +  * **Language->getLanguage(true)**: 'LanguageData::REFERENCE_LANGUAGE' 
 +  * **Language->getLanguageIsoCode(true)**: 'LanguageData::REFERENCE_LANGUAGE' 
 +  * **LanguageData->getLanguage(true)**: 'LanguageData::REFERENCE_LANGUAGE' 
 +== Functions == 
 +  * **admFuncMaxUploadSize()**: 'PhpIniUtils::getUploadMaxSize()' 
 +  * **admFuncGetBytesFromSize()**: 'FileSystemUtils::getHumanReadableBytes()' 
 +  * **admReadTemplateFile()**: 'FileSystemUtils::readFile()'
  
 ===== Admidio version 3.2 ===== ===== Admidio version 3.2 =====
Line 74: Line 126:
     * **FOLDER_MODULES**: '/adm_program/modules'     * **FOLDER_MODULES**: '/adm_program/modules'
     * **FOLDER_PLUGINS**: '/adm_plugins'     * **FOLDER_PLUGINS**: '/adm_plugins'
 +
 +
 +===== Admidio version 3.1 =====
 +=== New database class ===
 +Within Admidio 3.1 we changed the database class. This was necessary because PHP7 knocks at the door and in this PHP version our used database functions were no longer supported. So we have rewritten the whole class and now use the PHP class [[https://secure.php.net/manual/en/book.pdo.php|PDO]] for database access. This is a powerful class that will also allow us to integrate some more database engines in the future much easier. Admidio has a new well documented implementation of the his [[https://www.admidio.org/dokusource/class_database.html|Database class]]. The Admidio database object **$gDb** is still available now with the new class. We also try to implement some compatibility methods for often used methods so there should be not much problems for existing code. 
 +
 +Some methods must be removed because they are no longer necessary or there is another (better) way to find a solution. Please check if you use some of them and find a way to replace them with the new methods.
 +  * $gDb->data_seek()
 +  * $gDb->fetch_assoc()   - can be implemented with PdoStatement object
 +  * $gDb->field_name()
 +  * $gDb->free_result()  - can be removed without new implementation
 +  * $gDb->num_fields()
 +  * $gDb->select_db()    - can be removed without new implementation
 +  * $gDb->server_info()
 +  * $gDb->setCurrentDB()  - can be removed without new implementation
 +
 +Some methods are marked as deprecated. You can still use them but should switch to the new methods if there is time. Within our class documentation you will find hints how to implement the new methods:
 +  * $gDb->fetch_array()
 +  * $gDb->fetch_object()
 +  * $gDb->num_rows()
 +  * $gDb->insert_id()
 +
 +=== New syntax in language files ===
 +Within this version we use a new format for our translation files. Before it was an Admidio specific xml format. Now its the [[https://developer.android.com/guide/topics/resources/string-resource.html|Android String Resource]]. Version 3.1 will be still compatible to the old Admidio format but we encourage you to use the new format. There is also a small [[en:entwickler:how_to_make_your_plugin_translatable|How to for plugin developers]]. We also changed the style of the placeholders within the strings. Please have a look at [[en:entwickler:mehrsprachigkeit|Multilingualism]] for a detailed description of the new syntax.
 +
 +=== Changes to DatetimeExtended class ===
 +Since our requirements for PHP are changed to 5.3 we could use a lot of methods of the PHP class [[https://secure.php.net/manual/en/class.datetime.php|DateTime]]. Therefore we have removed methods from **DatetimeExtended** that were redundant.
 +There are only 4 methods left:
 +  * isValid()
 +  * getAge()
 +  * getWeekdays($weekday = 0)
 +  * getDateFormatForDatepicker($format = 'Y-m-d')
 +If you have used other methods please change your script to use the official DateTime methods.
 +
 +=== Other changes ===
 +The functions **admFuncGetFilenameExtension** and **admFuncGetFilenameWithoutExtension** are marked as deprecated and will be removed in future versions.
 +
 +
  • en/entwickler/changes_to_functions_and_methods.1482676220.txt.gz
  • Last modified: 2016/12/25 15:30
  • by ximex