在joomla中找到php文件引用

时间:2014-12-22 05:55:38

标签: php joomla

我的edit.php文件中的$ this变量是什么意思?没有"包括"或"要求"在其他文件中! 我的意思是我怎样才能找到$ this指向的类。哪个是主要的php文件,其中包含使用此edit.php文件的类

edit.php

 <?php
/**
* @package RSForm! Pro
* @copyright (C) 2007-2014 www.rsjoomla.com
* @license GPL, http://www.gnu.org/copyleft/gpl.html
*/

defined('_JEXEC') or die('Restricted access'); 

JHtml::_('behavior.keepalive');
?>

<script type="text/javascript">
function directorySave(task) {
    var form = document.getElementById('directoryEditForm');
    form.task.value = task;
    form.submit();
}
</script>

<form action="<?php echo JRoute::_('index.php?     option=com_rsform&view=directory&layout=edit&id='.$this->app->input->getInt('id',0)); ?>"     method="post" name="adminForm" id="directoryEditForm" enctype="multipart/form-data">
    <table class="table table-condensed table-striped table-hover table-bordered category">
        <?php foreach ($this->fields as $field) { ?>
        <tr>
            <td width="200" style="width: 200px;">
            <?php echo $field[0]; ?> <?php echo $field[2]; ?>
        </td>
        <td>
            <?php echo $field[1]; ?>
        </td>
    </tr>
    <?php } ?>
   </table>

<div class="form-actions">
    <button type="button" onclick="directorySave('apply');" class="btn btn-primary button"><?php    echo JText::_('RSFP_SUBM_DIR_APPLY'); ?></button> 
    <button type="button" onclick="directorySave('save');" class="btn btn-primary button"><?php    echo JText::_('RSFP_SUBM_DIR_SAVE'); ?></button> 
    <button type="button" onclick="directorySave('back')" class="btn button"><?php echo     JText::_('RSFP_SUBM_DIR_BACK'); ?></button>
    <?php       /* <--! I am Ahmad Mobaraki     --> */?>
    <button type="button" onclick="directorySave('delete')" class="btn btn-primary button"><?php echo JText::_('RSFP_SUBM_DIR_DELETE'); ?></button>
    <?php      /*  end ahmad*/ ?>

</div>

<input type="hidden" name="option" value="com_rsform">
<input type="hidden" name="controller" value="directory">
<input type="hidden" name="task" value="">
<input type="hidden" name="id" value="<?php echo $this->app->input->getInt('id',0); ?>">
<input type="hidden" name="formId" value="<?php echo $this->params->get('formId'); ?>">
</form>

1 个答案:

答案 0 :(得分:0)

如果它位于视图文件夹的tmpl文件夹中,则它引用JView / JViewLegacy / JViewBase类或您扩展视图类的任何内容。通常,该类将在view.html.php中的父文件夹中定义,或者在类似命名的文件中定义。

如果您执行$ this的var_dump,它会告诉您类名

例如,如果我

var_dump($this); die;

在我的一个视图模板文件中

  

对象(VeteransViewVeterans)#190 .....

VeteransViewVeterans是我的退伍军人组成部分退伍军人视图的视图类。

$this包含视图类引用,因为它包含/需要它的类