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 [2018/02/19 00:48] – [Admidio version 3.3] 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. 
-  * $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. 
- 
-===== Admidio version 3.2 ===== 
 === Changes/Deprecations === === Changes/Deprecations ===
-Every usage of a deprecated function/class/property now gets logged. So it is easy to see if you still use a deprecated feature.+== Class == 
 +  * **Menu** renamed to **MainMenu** 
 +== Class methods == 
 +  * **HtmlPage->hasNavbar()** was removed 
 +  * **Email->adminNotification()**: 'Email->sendNotification()' 
 +  * **Email->addBlindCopy()**: 'Email->addRecipient()'
  
-Class **TableUsers** has been marked as deprecated. You should use the existing class **Users**. All methods of **TableUsers** have been moved to **Users**. The class **TableUsers** will be removed in future versions.+===== Admidio version 4.1 =====
  
-Method **isWebmaster()** of the class **User** is marked as deprecated and will be removed in future versionsUse method **isAdministrator()** instead.+=== Call Admidio scripts with the UUID for user or role === 
 +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 a user you do it until now with the following url: <code php>ADMIDIO_URL. FOLDER_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.
  
-The functions **admFuncGetFilenameExtension** and **admFuncGetFilenameWithoutExtension** were marked as deprecated in version 3.1 and are now removed in this version.+=== Call Admidio scripts with the UUID for user or role === 
 +The following methods are removed:\\  
 +**Session::renewMenuObject()**\\  
 +**Session::renewOrganizationObject**\\  
 +**Session::renewUserObject(int $userId = 0)**\\  
 +New methods that could be used instead of them:\\  
 +**Session::reloadAllSessions()**\\  
 +**Session::reloadSession(int $userId)**\\ 
  
-The config property **$g_root_path** is deprecated and replaced with new constant **ADMIDIO_URL**. There are some more new helpful constants defined: 
-  * BASIC STUFF 
-    * **ADMIDIO_HOMEPAGE**: 'https://www.admidio.org/' 
-    * **HTTPS**: true, false 
-    * **PORT**: 80, 443, ... 
-    * **HOST**: 'www.example.org:1234', 'www.example.org', 'admidio.example.org' (only with port number if not 80 or 443) 
-    * **DOMAIN**: 'www.example.org', 'admidio.example.org' (always without port number) 
-    * **ADMIDIO_SUBFOLDER**: '/subfolder', '/admidio', '/' 
-  * URLS 
-    * **SERVER_URL**: 'https://www.example.org:1234' (protocol + HOST) 
-    * **ADMIDIO_URL**: 'https://www.example.org:1234/subfolder' (SERVER_URL + ADMIDIO_SUBFOLDER) 
-    * **FILE_URL**: 'https://www.example.org:1234/subfolder/adm_program/index.php' (URL without params, hash, ...) 
-    * **CURRENT_URL**: 'https://www.example.org:1234/subfolder/adm_program/index.php?param=value' (complete URL) 
-  * PATHS 
-    * **WWW_PATH**: '/var/www', 'C:\inetpub\wwwroot' (Will get "SERVER_PATH" in v4.0) 
-    * **ADMIDIO_PATH**: '/var/www/subfolder', 'C:\inetpub\wwwroot\subfolder' 
-    * **CURRENT_PATH**: '/var/www/subfolder/adm_program/index.php', 'C:\inetpub\wwwroot\subfolder\adm_program\index.php' 
-  * FOLDERS 
-    * **FOLDER_DATA**: '/adm_my_files' 
-    * **FOLDER_CLASSES**: '/adm_program/system/classes' 
-    * **FOLDER_LIBS_SERVER**: '/adm_program/libs' (PHP libs) 
-    * **FOLDER_LIBS_CLIENT**: '/adm_program/libs' (JavaScript/CSS libs) 
-    * **FOLDER_LANGUAGES**: '/adm_program/languages' 
-    * **FOLDER_THEMES**: '/adm_themes' 
-    * **FOLDER_MODULES**: '/adm_program/modules' 
-    * **FOLDER_PLUGINS**: '/adm_plugins' 
  
 ===== Admidio version 3.3 ===== ===== Admidio version 3.3 =====
-**Under construction. Not finished yet.** 
  
 === Bootstrapping === === Bootstrapping ===
Line 83: Line 36:
 Autoload is in it's own **autoload.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. 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 === === New ===
Line 120: Line 76:
   * **TableFile->getCompletePathOfFile()**: 'TableFile->getFullFilePath()'   * **TableFile->getCompletePathOfFile()**: 'TableFile->getFullFilePath()'
   * **TableFolder->getCompletePathOfFolder()**: 'TableFolder->getFolderPath()'   * **TableFolder->getCompletePathOfFolder()**: 'TableFolder->getFolderPath()'
 +  * **TableRoles->viewRole()**: 'TableRoles->isVisible()'
   * **User->columnsValueChanged()**: 'User->hasColumnsValueChanged()'   * **User->columnsValueChanged()**: 'User->hasColumnsValueChanged()'
 == Class method params == == Class method params ==
Line 132: Line 89:
   * **admFuncGetBytesFromSize()**: 'FileSystemUtils::getHumanReadableBytes()'   * **admFuncGetBytesFromSize()**: 'FileSystemUtils::getHumanReadableBytes()'
   * **admReadTemplateFile()**: 'FileSystemUtils::readFile()'   * **admReadTemplateFile()**: 'FileSystemUtils::readFile()'
 +
 +===== Admidio version 3.2 =====
 +=== Changes/Deprecations ===
 +Every usage of a deprecated function/class/property now gets logged. So it is easy to see if you still use a deprecated feature.
 +
 +Class **TableUsers** has been marked as deprecated. You should use the existing class **Users**. All methods of **TableUsers** have been moved to **Users**. The class **TableUsers** will be removed in future versions.
 +
 +Method **isWebmaster()** of the class **User** is marked as deprecated and will be removed in future versions. Use method **isAdministrator()** instead.
 +
 +The functions **admFuncGetFilenameExtension** and **admFuncGetFilenameWithoutExtension** were marked as deprecated in version 3.1 and are now removed in this version.
 +
 +The config property **$g_root_path** is deprecated and replaced with new constant **ADMIDIO_URL**. There are some more new helpful constants defined:
 +  * BASIC STUFF
 +    * **ADMIDIO_HOMEPAGE**: 'https://www.admidio.org/'
 +    * **HTTPS**: true, false
 +    * **PORT**: 80, 443, ...
 +    * **HOST**: 'www.example.org:1234', 'www.example.org', 'admidio.example.org' (only with port number if not 80 or 443)
 +    * **DOMAIN**: 'www.example.org', 'admidio.example.org' (always without port number)
 +    * **ADMIDIO_SUBFOLDER**: '/subfolder', '/admidio', '/'
 +  * URLS
 +    * **SERVER_URL**: 'https://www.example.org:1234' (protocol + HOST)
 +    * **ADMIDIO_URL**: 'https://www.example.org:1234/subfolder' (SERVER_URL + ADMIDIO_SUBFOLDER)
 +    * **FILE_URL**: 'https://www.example.org:1234/subfolder/adm_program/index.php' (URL without params, hash, ...)
 +    * **CURRENT_URL**: 'https://www.example.org:1234/subfolder/adm_program/index.php?param=value' (complete URL)
 +  * PATHS
 +    * **WWW_PATH**: '/var/www', 'C:\inetpub\wwwroot' (Will get "SERVER_PATH" in v4.0)
 +    * **ADMIDIO_PATH**: '/var/www/subfolder', 'C:\inetpub\wwwroot\subfolder'
 +    * **CURRENT_PATH**: '/var/www/subfolder/adm_program/index.php', 'C:\inetpub\wwwroot\subfolder\adm_program\index.php'
 +  * FOLDERS
 +    * **FOLDER_DATA**: '/adm_my_files'
 +    * **FOLDER_CLASSES**: '/adm_program/system/classes'
 +    * **FOLDER_LIBS_SERVER**: '/adm_program/libs' (PHP libs)
 +    * **FOLDER_LIBS_CLIENT**: '/adm_program/libs' (JavaScript/CSS libs)
 +    * **FOLDER_LANGUAGES**: '/adm_program/languages'
 +    * **FOLDER_THEMES**: '/adm_themes'
 +    * **FOLDER_MODULES**: '/adm_program/modules'
 +    * **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.1518997722.txt.gz
  • Last modified: 2018/02/19 00:48
  • by ximex