Drupal在自定义类中获取“ Database :: getConnection('default')”

时间:2018-09-11 08:44:45

标签: database class drupal drupal-7 database-connection

我正在我的Drupal 7项目中创建一个自定义类。我有一个Database Extender类,在其中重写了_toString函数。所以代码就像

class SelectQuery extends \SelectQueryExtender
{
    public function __toString()
    {
        //code
    }
}

__toString函数中,有许多引用$this的变量。其中之一是$this->connection。有什么办法可以将当前连接对象获取到该变量?尝试几次后我没有获得价值。

请帮助。

0 个答案:

没有答案