コード例 #1
0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
// Calls the function from the display library
require_once "../../../config.php";
_load_language_file("/website_code/php/properties/media_and_quota_template.inc");
_load_language_file("/website_code/php/properties/sharing_status_template.inc");
_load_language_file("/properties.inc");
require_once "../display_library.php";
require_once "../user_library.php";
require_once "../template_status.php";
require_once "../url_library.php";
require_once "../properties/properties_library.php";
if (empty($_SESSION['toolkits_logon_id'])) {
    die("Please login");
}
$info = new stdClass();
$info->properties = project_info($_POST['template_id']);
$info->properties .= media_quota_info($_POST['template_id']);
$info->properties .= access_info($_POST['template_id']);
$info->properties .= sharing_info($_POST['template_id']);
$sql = "SELECT template_id, user_id, firstname, surname, role FROM " . " {$xerte_toolkits_site->database_table_prefix}templaterights, {$xerte_toolkits_site->database_table_prefix}logindetails WHERE " . " {$xerte_toolkits_site->database_table_prefix}logindetails.login_id = {$xerte_toolkits_site->database_table_prefix}templaterights.user_id and template_id= ? and user_id = ?";
$row = db_query_one($sql, array($_POST['template_id'], $_SESSION['toolkits_logon_id']));
$info->role = $row['role'];
echo json_encode($info);
//$info = get_project_info($_POST['template_id']);
//echo $info;
コード例 #2
0
ファイル: project_info.php プロジェクト: michgor26/Project
            <p>
                <?php 
    $pid = $_REQUEST['pid'];
    echo "Projekt-id: " . $pid . "<br>";
    ?>
                Oprettelses dato: <?php 
    echo project_startdate($mysqli, $pid);
    ?>
<br>
                Afsluttelses date: <?php 
    echo project_enddate($mysqli, $pid);
    ?>
<br><br>
                Kort info over projektet:<br><br>
                <?php 
    echo project_info($mysqli, $pid);
    ?>
 <br><br>

                Liste med alle der har arbejdet på projektet: <br>
                <?php 
    project_history($mysqli, $pid);
    ?>
<br>        
                Det samlede antal timer lagt i projektet: <?php 
    echo projekt_timer_sum($mysqli, $pid);
    ?>
 <br><br>

                <?php 
    if (check_admin($mysqli) == true) {