Panel: drag image onto textfield and change path

how would I got about setting the url path generated by dragging a file into the textfield and have kirby write the full path (eg /content/page/image.jpg) instead of the relative url (eg image.jpg)?

use case: making the frontend with something else than kirby and have the markdown render to pick up correct paths. plan b would be to write some code to the markdiwn plugin to extend the relative path into a full one, but first let’s try this.

The file you have to look at is panel/app/src/panel/models/file.php:

  public function dragText() {
    if(kirby()->option('panel.kirbytext') === false) {
      switch($this->type()) {
        case 'image':
          return '![' . $this->name() . '](' . parent::url() . ')';
          break;
        default:
          return '[' . $this->filename() . '](' . parent::url() . ')';
          break;
      }    
    } else {
      switch($this->type()) {
        case 'image':
          return '(image: ' . $this->filename() . ')';
          break;
        default:
          return '(file: ' . $this->filename() . ')';
          break;
      }
    }
  }

thanks!

am i wrong or this is though the rendering part?

this

return '![' . $this->name() . '](' . parent::url() . ')';

outputs

![name](filename.jpg)

right?

EDIT: i forgot I can turn off kirbytext, I saw it from the top line of the function

  public function dragText() {
    if(kirby()->option('panel.kirbytext') === false) {

i’ll look into that!

EDIT 2:

just had to set panel.kirbytext to false and am done :smiley:

https://getkirby.com/docs/cheatsheet/options/panel-kirbytext