我看到了一个自定义插件的奇怪行为。它的皮肤生成一些HTML,它工作正常。只要我将小部件放到页面上,它就会在页面刷新后才可见。当我尝试将小部件拖动到另一个位置时也是如此。
有没有人遇到同样的问题?我不确定它是一个错误还是我可能会错过我的代码中的内容。
[edit] ipContent() - > getCurrentPage() - > getId()在执行任何拖放操作后出现问题 [edit]
这是我的皮肤文件:
<div>
<div class="form-group">
<div class="checkbox">
<label>
<input id="auth-email-check-nutzung" type="checkbox"><?php echo ipSlot('text', array(
'id' => 'nutzungsbedingungen_' . ipContent()->getCurrentPage()->getId(),
'default' => 'Ich stimme den <a href="#">Nutzungebedingungen</a> zu.',
'attributes' => array(
'id' => 'auth-email-check-nutzung-text'
)
)); ?>
</label>
</div>
<div class="checkbox">
<label>
<input id="auth-email-check-daten" type="checkbox"><?php echo ipSlot('text', array(
'id' => 'datenschutz' . ipContent()->getCurrentPage()->getId(),
'default' => 'Ich stimme der <a href="#">Datenschutzerklärung</a> zu.',
'attributes' => array(
'id' => 'auth-email-check-daten-text'
)
)); ?>
</label>
</div>
</div>
<form class="form" role="form">
<div class="form-group">
<label for="inputEmail1" class="control-label">Email</label>
<input type="email" class="form-control" id="inputEmail1" placeholder="Email">
</div>
<div class="form-group">
<?php if ((ipIsManagementState())) :?>
<?php
// Use a simulated Button to edit text and prevent any default button event
// for user friendly inline editing
echo ipSlot('text', array(
'id' => 'button' . ipContent()->getCurrentPage()->getId(),
'default' => 'senden',
'tag' => "div",
'class' => 'btn btn-danger auth-button btn-block',
'attributes' => array(
'data-target' => 'bs-button',
'id' => 'auth-email-button-div'
)
)); ?>
<?php endif; ?>
<?php if (!(ipIsManagementState())) :?>
<?php
// Display real Button only on the live page with the contents of ipSlot :
// 'id' => 'button' . ipContent()->getCurrentPage()->getId()
echo ipSlot('text',array(
'id' => 'button' . ipContent()->getCurrentPage()->getId(),
'tag' => "button",
'class' => 'btn btn-danger btn-block',
'attributes' => array(
'data-target' => 'bs-button',
'id' => 'auth-email-button',
'disabled' => 'disabled'
)
)); ?>
<?php endif; ?>
</div>
</form>
</div>
提前致谢。
答案 0 :(得分:1)
当您重新加载页面时,&#34; currentPage&#34;确实存在。这就是代码运作的原因。但是当您拖动新窗口小部件或移动窗口小部件时,它的内容将使用AJAX加载。 AJAX请求没有真正的页面。因此,在某些方面无法在小部件的皮肤中获取当前页面ID。