Jump to content

DawPi

Clients
  • Posts

    8,441
  • Joined

  • Last visited

  • Days Won

    20

DawPi last won the day on August 18

DawPi had the most liked content!

Contact Methods

Profile Information

  • Gender
    Male
  • Location
    .pl

Recent Profile Visitors

163,807 profile views
  1. Wohoo! This is something truly valuable for so many communities!
  2. Hello, it was discussed a lot my friend. Read this entry first: https://invisioncommunity.com/developers/devblog/blog/ic5-introduction-to-listeners-r8/ Best regards and good luck! IC5 isn’t as bad as it might seem at first. 😉
  3. I know, sometimes there were "silent" patches. 😉
  4. FYI, on Beta 2 it still exists.
  5. https://github.com/codingjungle/toolbox
  6. Hm, https://invisioncommunity.com/forums/forum/533-invision-community-5-modification-questions/
  7. Hi 🙂 See: 2024-10-11_16-08-30.mp4
  8. I know. I'm reporting a bug related to it. 😛
  9. As above during e-mails testing. IC5 Beta 1 PHP 8.2.23 Mail delivery method - PHP
  10. Hello, it's pretty simple to reproduce. The stack part: $form->add( new \IPS\Helpers\Form\Stack( 'myapp_authors', ! empty( $authors ) ? $authors : array(), TRUE, array( 'stackFieldType' => '\IPS\myapp\Form\File', 'maxItems' => 5, 'key' => array( 'placeholder' => \IPS\Member::loggedIn()->language()->addToStack( 'myapp_enter_name_placeholder' ), 'size' => 20 ), 'value' => array( 'min' => 0, 'max' => 100 ) ), NULL, NULL, NULL, 'myapp_authors' ) ); And custom form field type constructor from myapp\(sources)Form\File: /** * Constructor * Creates the two date objects * * @param string $name Form helper name * @param mixed $defaultValue Default value for the helper * @param bool $required Helper is required (TRUE) or not (FALSE) * @param array $options Options for the helper instance * @see \IPS\Helpers\Form\Abstract::__construct * @return void */ public function __construct( $name, $defaultValue=NULL, $required=FALSE, $options=array() ) { $options = array_merge( $this->defaultOptions, $options ); parent::__construct( $name, $defaultValue, $required, $options ); $this->keyField = new \IPS\Helpers\Form\Member( "{$name}[key]", isset( $defaultValue['key'] ) ? \IPS\Member::load( $defaultValue['key'] ) : NULL, TRUE, array(), NULL, NULL, NULL, "{$name}[key]" ); $this->valueField = new \IPS\Helpers\Form\Number( "{$name}[value]", isset( $defaultValue['value'] ) ? $defaultValue['value'] : NULL, FALSE, isset( $options['value'] ) ? $options['value'] : array() ); } And this is how it works and looks like: 2024-09-14_07-53-00.mp4 Is this a known issue or someone know how to fix it? 🤔 Thanks in advance!
  11. Fixed - https://invisioncommunity.com/forums/topic/479818-this-site-forumsfronttopicspostcontainer-bug/?do=findComment&comment=2978590
×
×
  • Create New...