Example #1
0
            $session->msg('s', "User account has been created! ");
            //            redirect('add_user.php', false);
        } else {
            //failed
            echo 'papoy';
            $session->msg('d', ' Sorry failed to create account!');
            //            redirect('add_user.php', false);
        }
    } else {
        $session->msg("d", $errors);
        echo 'pappppp';
        //        redirect('add_user.php', false);
    }
}
include_once 'layouts/header.php';
echo display_msg($msg);
?>
<div class="row">
    <div class="panel panel-default">
        <div class="panel-heading">
            <strong>
                <span class="glyphicon glyphicon-th"></span>
                <span>Add New User</span>
            </strong>
        </div>
        <div class="panel-body">
            <div class="col-md-6">
                <form method="post" action="add_user.php">
                    <div class="form-group">
                        <label for="name">Name</label>
                        <input type="text" class="form-control" name="full-name" placeholder="Full Name">
Example #2
0
<script src="includes/lib/prototype.js" type="text/javascript"></script>
<script src="includes/src/effects.js" type="text/javascript"></script>
<script src="includes/validation.js" type="text/javascript"></script>
<link href="includes/style.css" rel="stylesheet" type="text/css" />
<link href="includes/simplecustomer.css" rel="stylesheet" type="text/css" />
</head>

<body>
<?php 
include 'includes/header.php';
?>
<div class="container">
  <div class="leftcolumn">
    <h2>Custom Fields </h2>
    <?php 
display_msg();
?>
    


    <form id="form1" name="form1" method="post" action="">

    <table width="100%" border="0" cellspacing="0" cellpadding="3">
      <tr>
        <th colspan="3" scope="row"><br />
          Field Name <br />
          <input name="field_add" id="field_add" size="35" />
          <br />
          <br />
          Optional drop down menu options<em> (separate by comma) </em><br />
          <input name="field_content" id="field_content" size="45" />
Example #3
0
function RLsimpleXMLelement($resp, $displayerrors = true)
{
    $details = $resp;
    if (($preend = strpos($resp, '<title><!DOCTYPE')) !== false && ($lastentry = strrpos($resp, "<entry>")) !== false) {
        $details = substr($resp, $preend + 7, -7);
        $resp = substr($resp, 0, $lastentry - 1) . "\n</feed>";
        error_log("/lib/alfresco30/lib.php:: WARNING - Alfresco Server Error: {$details}");
        if ($displayerrors) {
            display_msg(get_string('incompletequeryresponse', 'block_repository'), $details);
        }
    }
    $resp = preg_replace('/&nbsp;/', ' ', $resp);
    // TBD?
    libxml_use_internal_errors(true);
    try {
        $sxml = new SimpleXMLElement($resp);
    } catch (Exception $e) {
        error_log("/lib/alfresco30/lib.php:: WARNING - Alfresco Server Error: BAD XML => {$details}");
        if ($displayerrors) {
            display_msg(get_string('badqueryresponse', 'block_repository'), $details);
        }
        if (debugging('', DEBUG_DEVELOPER)) {
            if (!$displayerrors) {
                echo 'Bad XML: ', $details;
            }
            echo "<br/><pre>\n";
            foreach (libxml_get_errors() as $error) {
                echo "\t", $error->message, "\n";
            }
            echo '</pre>';
        }
        return false;
    }
    return $sxml;
}
			Only administrators can access this page after logging in.<br />
			<a href="<?php 
    echo ROOTMEMBERPATH;
    ?>
wp-login.php?redirect_to=<?php 
    echo urlencode(ROOTMEMBERPATH . 'grind-code/index.php/admin/index');
    ?>
">Log in now</a>.
		<?php 
} elseif (!$pwdBypass && $_SESSION['wpuser']['wp_role'] != WP_ADMIN_ROLE) {
    ?>
			Only administrators can access this page.

			You are
			<?php 
    echo (in_array(substr($_SESSION['wpuser']['wp_role'], 0, 1), array('a', 'e', 'i', 'o', 'u')) ? "an" : "a") . " \"" . $_SESSION['wpuser']['wp_role'] . "\"";
    ?>
.<br />

			<a href="<?php 
    echo ROOTMEMBERPATH;
    ?>
wp-login.php/redirect_to=/frontdesk/">Log in as an administrator now</a>.
		<?php 
} else {
    if (isset($error)) {
        display_msg($error);
    }
    echo $content;
}
echo $footer;
Example #5
0
function RLsimpleXMLelement($resp, $displayerrors = false) {
    //echo "RLsimpleXMLelement() => resp = {$resp}";

    $details = $resp;
    if (($preend = strpos($resp, '<title><!DOCTYPE')) !== false &&
        ($lastentry = strrpos($resp, "<entry>")) !== false) {
        $details = substr($resp, $preend + 7, -7);
        $resp = substr($resp, 0, $lastentry - 1) ."\n</feed>";
        // error_log("repository/elisfiles/lib/lib.php:: WARNING - Alfresco Server Error: {$details}");
        if ($displayerrors) {
            display_msg(get_string('incompletequeryresponse', 'repository_elisfiles'),
                        $details);
        }
    }
    $resp = preg_replace('/&nbsp;/', ' ', $resp); // TBD?
    libxml_use_internal_errors(true);
    try {
        $sxml = new SimpleXMLElement($resp);
    } catch (Exception $e) {
        // error_log("repository/elisfiles/lib/lib.php:: WARNING - Alfresco Server Error: BAD XML => {$details}");
        if ($displayerrors) {
            display_msg(get_string('badqueryresponse', 'repository_elisfiles'),
                        $details);
        }
        return false;
    }
    return $sxml;
}