</td>
    <?php 
    if (GetBoolValue("ApacheWebLink") || GetBoolValue("CustomWebLink")) {
        ?>
    <td align="center">
      <?php 
        if (GetBoolValue("ApacheWebLink")) {
            ?>
<a href="<?php 
            print $item->apacheWebLink;
            ?>
" target="_blank"><img src="templates/images/apache-icon.png" alt="A" title="Apache WebDAV"></a><?php 
        }
        ?>
      <?php 
        if (GetBoolValue("CustomWebLink")) {
            ?>
<a href="<?php 
            print $item->customWebLink;
            ?>
" target="_blank"><img src="templates/images/weblink-icon.gif" alt="W" title="Custom Subversion Browser"></a><?php 
        }
        ?>
    </td>
    <?php 
    }
    ?>
  </tr>
  <?php 
}
?>
Beispiel #2
0
:</b> <?php 
PrintStringValue("AdGroupFilterEx");
?>
</small></td>
        <td><input type="text" name="AdGroupFilter" id="AdGroupFilter" value="<?php 
PrintStringValue("AdGroupFilter");
?>
"></td>
    </tr>
    <tr>
        <td><?php 
Translate("Strict mode");
?>
</td>
        <td><input type="checkbox" name="AdGroupStrictMode" id="AdGroupStrictMode" <?php 
if (GetBoolValue("AdGroupStrictMode")) {
    echo "checked";
}
?>
></td>
    </tr>
    </tbody>
</table>
<br>

<input type="submit" value="<?php 
Translate("Save configuration");
?>
">

</form>
Beispiel #3
0
	</tr>
	<?php 
    }
    ?>
	</tbody>
  
	</table>
</form>
<br>
<?php 
}
?>


<?php 
if (IsProviderActive(PROVIDER_AUTHENTICATION) && GetBoolValue("ProjectManager") && HasAccess(ACL_MOD_PROJECTMANAGER, ACL_ACTION_VIEW)) {
    ?>
<!-- 
  Project manager's access path list
-->
<h2><?php 
    Translate("User is project manager of:");
    ?>
</h2>
<form action="userview.php?username=<?php 
    PrintStringValue("UsernameEncoded");
    ?>
" method="POST">
<input type="hidden" name="selected_users[]" value="<?php 
    PrintStringValue("Username");
    ?>
        print $r->getEncodedParentIdentifier();
        ?>
&amp;r=<?php 
        print $r->getEncodedName();
        ?>
"><?php 
        print $r->name;
        ?>
</a>
				</td>
				<?php 
        if (GetBoolValue("ShowOptions")) {
            ?>
				<td>
					<?php 
            if (GetBoolValue("ShowDumpOption")) {
                ?>
					<a href="repositorylist.php?pi=<?php 
                print $r->getEncodedParentIdentifier();
                ?>
&amp;r=<?php 
                print $r->getEncodedName();
                ?>
&amp;dump=true">
						<?php 
                Translate("Dump");
                ?>
					</a>
					<?php 
            }
            ?>
Beispiel #5
0
    ?>
: <b>admin</b>
  </p>
</div>
<p>
  <?php 
    Translate("You can <a href=\"login.php\"><b>login now.</b></a>");
    ?>
</p>
<?php 
}
?>


<?php 
if (!GetBoolValue("DefaultUserCreated") && GetBoolValue("ShowUserSelection")) {
    ?>
<div class="hintmsg">
  <?php 
    Translate("No administrator defined! Select the user for the administator privileges, please.");
    ?>
</div>

<form method="post" action="settings.php">
  <table class="datatable settings">
    <tbody>
      <tr>
        <td><?php 
    Translate("User");
    ?>
</td>
Beispiel #6
0
function PrintBoolValue($varName)
{
    print GetBoolValue($varName);
}