Jump to content

IPS 4.6.8 - 3rd Party Developer News


Recommended Posts

IPS 4.6.8 is going to remove following extensions:

  • core/extensions/core/Sitemap/Applications.php
  • core/extensions/core/Sitemap/Profiles.php

So if your 3rd party applications or plugins hook into any of these files, please be warned.

 

Everything else 3rd Party related from our changelog:

Quote

- Fixed an issue where it was not possible to create new default database inserts in the developer center.
- Fixed an issue where adding a hook to the topic sidebar would shift the sidebar to underneath the topic.
- Fixed an issue where adding a hook can cause CSS selectors with a colon (eg: ipsFlex:4) to be broken (eg: ipsFlex---cln---4)
- The ACP Member Profile Template will remove the left column if there are no blocks to show.
- The GroupForm extension can now have a new method `canDelete()` which can be used to set specific groups not deletable (e.g. if it is used for target after a purchase).

I'm really excited about the last point.
Now you're be able to set a member group as not deletable, to prevent that a group which is used for member promotions, or which is literally essential for your 3rd party code can be deleted by the admin.

	/**
	 * Can this group be deleted?
	 *
	 * @param	\IPS\Member\Group	$group	The group
	 * @return	void
	 */
	public function canDelete( $group ) : bool
	{
		return TRUE;
	}

 

Just a short update after a while:)

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...