pdledit - show original/system layout text for comparison
This commit is contained in:
parent
6efef3922b
commit
bff1e215cc
@ -77,8 +77,10 @@ class Pdledit extends \Zotlabs\Web\Controller {
|
||||
}
|
||||
|
||||
$t = get_pconfig(local_channel(),'system',$module);
|
||||
if(! $t)
|
||||
$t = file_get_contents(theme_include($module));
|
||||
$s = file_get_contents(theme_include($module));
|
||||
if(! $t) {
|
||||
$t = $s;
|
||||
}
|
||||
if(! $t) {
|
||||
notice( t('Layout not found.') . EOL);
|
||||
return '';
|
||||
@ -89,7 +91,9 @@ class Pdledit extends \Zotlabs\Web\Controller {
|
||||
'$mname' => t('Module Name:'),
|
||||
'$help' => t('Layout Help'),
|
||||
'$another' => t('Edit another layout'),
|
||||
'$original' => t('System layout'),
|
||||
'$module' => argv(1),
|
||||
'$src' => $s,
|
||||
'$content' => htmlspecialchars($t,ENT_COMPAT,'UTF-8'),
|
||||
'$submit' => t('Submit')
|
||||
));
|
||||
|
@ -11,7 +11,10 @@
|
||||
<br />
|
||||
<br />
|
||||
|
||||
<div class="descriptive-text">{{$original}}</div>
|
||||
<pre><code>{{$src}}</code></pre>
|
||||
|
||||
<br />
|
||||
|
||||
<form action="pdledit" method="post" >
|
||||
<input type="hidden" name="module" value="{{$module}}" />
|
||||
|
Reference in New Issue
Block a user