-
I wonder is there a way how to extend a driver? Now it will be really great to enable that functionality in adminer. I understand that it never will be in core so I would like to override a function:
without need of copy whole class. Is't possible? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Extending a driver is not supported and I don't want to support it. There's a list of routines in the schema overview and they can call the function from there. But I assume you want them to see this result from I guess it would be possible to call |
Beta Was this translation helpful? Give feedback.
Extending a driver is not supported and I don't want to support it.
There's a list of routines in the schema overview and they can call the function from there. But I assume you want them to see this result from
&processlist=
, right? Are they also allowed to kill the queries? It's the main added value of this page.I guess it would be possible to call
adminer()->processList()
inprocesslist.inc.php
with the default implementation od returningprocess_list()
.