Extend a class and nothing happens?

Status
This content is read-only, or is not open for further replies.

Robert9

Guest
offline
Are there classes, i can not extend?
How can I check if a class is extended?

Real world example:

XML:

Code:
<?xml version="1.0" encoding="utf-8"?>
<class_extensions>
  <extension from_class="XF\ForumType\AbstractHandler" to_class="Xencafe\Lala\XF\ForumType\AbstractHandler" execute_order="1000" active="1"/>
 </class_extensions>

Code:

Code:
<?php
namespace Xencafe\Lala\XF\ForumType;

use XF\Entity\Forum;

class AbstractHandler extends XFCP_AbstractHandler
{
    public function...

Read more

Continue reading...
 
Liked by:
Status
This content is read-only, or is not open for further replies.
Top Bottom