本文整理汇总了PHP中Program类的典型用法代码示例。如果您正苦于以下问题:PHP Program类的具体用法?PHP Program怎么用?PHP Program使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Program类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: actionAdmin
public function actionAdmin()
{
$model = new Program('search');
$model->unsetAttributes();
if (isset($_GET['Program'])) {
$model->setAttributes($_GET['Program']);
}
$this->render('admin', array('model' => $model));
}
示例2: Main
public static function Main()
{
echo "HELLO\n";
$app = new Program(array(new Item(array('name' => "+5 Dexterity Vest", 'sellIn' => 10, 'quality' => 20)), new Item(array('name' => "Aged Brie", 'sellIn' => 2, 'quality' => 0)), new Item(array('name' => "Elixir of the Mongoose", 'sellIn' => 5, 'quality' => 7)), new Item(array('name' => "Sulfuras, Hand of Ragnaros", 'sellIn' => 0, 'quality' => 80)), new Item(array('name' => "Backstage passes to a TAFKAL80ETC concert", 'sellIn' => 15, 'quality' => 20)), new Item(array('name' => "Conjured Mana Cake", 'sellIn' => 3, 'quality' => 6))));
$app->UpdateQuality();
echo sprintf("%50s - %7s - %7s\n", "Name", "SellIn", "Quality");
foreach ($app->items as $item) {
echo sprintf("%50s - %7d - %7d\n", $item->name, $item->sellIn, $item->quality);
}
}
示例3: getAllProgramsFromDatabase
public static function getAllProgramsFromDatabase($dbConn)
{
$programIds = readFromDatabase::readEntireColumnFromTable($dbConn, array(self::ID_COLUMN_NAME), self::TABLE_NAME);
$programs = array();
foreach ($programIds as $programId) {
$program = new Program($dbConn, $programId[self::ID_COLUMN_NAME]);
$programs[$program->getId()] = $program->getName();
}
return $programs;
}
示例4: evaluateShouldTokenizeAndParseCode
/** @test */
public function evaluateShouldTokenizeAndParseCode()
{
$lexer = $this->getMock('Igorw\\Ilias\\Lexer');
$lexer->expects($this->once())->method('tokenize')->with('2')->will($this->returnValue(['2']));
$reader = $this->getMock('Igorw\\Ilias\\Reader');
$reader->expects($this->once())->method('parse')->with(['2'])->will($this->returnValue([2]));
$builder = $this->getMock('Igorw\\Ilias\\FormTreeBuilder');
$builder->expects($this->once())->method('parseAst')->with([2])->will($this->returnValue([new Form\LiteralForm(2)]));
$walker = $this->getMock('Igorw\\Ilias\\Walker');
$walker->expects($this->once())->method('expand')->with($this->isInstanceOf('Igorw\\Ilias\\Environment'), $this->isInstanceOf('Igorw\\Ilias\\Form\\Form'))->will($this->returnArgument(1));
$env = $this->getMock('Igorw\\Ilias\\Environment');
$program = new Program($lexer, $reader, $builder, $walker);
$this->assertSame(2, $program->evaluate($env, '2'));
}
示例5: index
public function index()
{
$hours = Hour::all();
$programs = Program::where('project_id', '=', Auth::user()->curr_project_id)->where('location_id', '=', Auth::user()->location_id)->get();
$menu = 'data';
return View::make('hours.index', compact('hours', 'programs', 'menu'));
}
示例6: up
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('studentdelayed', function (Blueprint $table) {
$table->increments('id');
$table->integer('studentid');
$table->integer('programid');
$table->integer('collegeid');
$table->integer('semesters');
$table->timestamps();
});
$students = Studentdropout::select('studentid', 'programid', 'collegeid', 'semesters')->where('semesters', '>', 8)->get();
foreach ($students as $student) {
$programid = $student->programid;
$semesters = $student->semesters;
$programYears = Program::select('numyears')->where('programid', $programid)->first()->numyears;
if ($semesters > $programYears * 2) {
$newEntry = new Studentdelayed();
$newEntry->studentid = $student->studentid;
$newEntry->programid = $programid;
$newEntry->collegeid = $student->collegeid;
$newEntry->semesters = $semesters;
$newEntry->save();
}
}
}
示例7: postDelete
public function postDelete()
{
$id = Input::get('id');
$delpro = Program::find($id);
$delpro->delete();
return 1;
}
示例8: simpleReserve
/**
* simpleReserve
*
* @TODO 同時間帯に別のチャンネルを予約している場合に警告
* 同一番組をすでに予約している場合は上書きする
*/
public static function simpleReserve($program_disc)
{
$db = DB::conn();
$program = Program::get($program_disc);
$row = array('program_disc' => $program->program_disc, 'autorec' => 0, 'mode' => 0, 'job' => 0);
return $db->replace(self::TABLE, $row);
}
示例9: testGetId
public function testGetId()
{
$rows = Program::search('', array());
$row = current($rows);
$this->assertEquals('program', strtolower(get_class(Program::get($row['program_disc']))));
$this->assertFalse(Program::get('dummy'));
}
示例10: showSpecificProgram
public function showSpecificProgram()
{
$programIDInput = Input::get('program-dropdown');
$program = Program::find($programIDInput);
//ave students per year and ave difference
$yearsArray = Studentterm::where('programid', $program->programid)->where('year', '>', 1999)->where('year', '<', 2014)->groupBy('year')->orderBy('year', 'asc')->lists('year');
$yearlyStudentAverage = [];
$yearlySemDifference = [];
foreach ($yearsArray as $yearData) {
$aveStudents = $program->getYearlyAveStudents($yearData);
if ($aveStudents > 1) {
$yearlyStudentAverage[$yearData] = $aveStudents;
}
}
$aveYearsOfStay = $program->getAveYearsOfStay();
$aveYearsBeforeDropout = $program->getAveYearsBeforeDropout();
$aveYearsBeforeShifting = $program->getAveYearsBeforeShifting();
$aveAttrition = $program->getAveAttrition();
$aveShiftRate = $program->getAveShiftRate();
$batchAttrition = $program->getBatchAttrition();
$batchShiftRate = $program->getBatchShiftRate();
$division = $program->getDivision();
$numYears = $program->getNumYears();
$gradeCount = $program->getGradeCount();
$shiftGradeCount = $program->getShiftGradeCount();
$stbracketCount = $program->getSTBracketCount();
$shiftBracketCount = $program->getShiftSTBracketCount();
return View::make('program.program-specific', ['program' => $program, 'aveYearsOfStay' => $aveYearsOfStay, 'yearlyStudentAverage' => $yearlyStudentAverage, 'aveYearsBeforeShifting' => $aveYearsBeforeShifting, 'aveYearsBeforeDropout' => $aveYearsBeforeDropout, 'aveAttrition' => $aveAttrition, 'batchAttrition' => $batchAttrition, 'aveShiftRate' => $aveShiftRate, 'batchShiftRate' => $batchShiftRate, 'division' => $division, 'numYears' => $numYears, 'gradeCount' => $gradeCount, 'shiftGradeCount' => $shiftGradeCount, 'stbracketCount' => $stbracketCount, 'shiftBracketCount' => $shiftBracketCount]);
}
示例11: listofmodule
public function listofmodule($request, $response)
{/*{{{*/
$response->programList = DAL::get()->find_all('Program');
$moduleId = $request->moduleid;
$programId = $request->programid;
$response->moduleId = $moduleId;
$response->moduleid_seleted = $request->moduleid;
$response->programid_seleted = $request->programid;
$response->module = Module::getById($moduleId);
$response->funpoints = array();
if($response->module instanceof Module)
{
$response->funpoints = $response->module->getFunpoints();
//fix programid_seleted
$response->programid_seleted = $response->module->program->id;
$response->program = $response->module->program;
}elseif($request->programid > 0){
$response->program = Program::getById($request->programid);
$response->funpoints = $response->program->getFunpoints();
}
}/*}}}*/
示例12: studentPerprogramFilter
public function studentPerprogramFilter($id)
{
$program_id = $id;
$program = Program::with('courses')->find($program_id);
$programs = Program::where('project_id', '=', Auth::user()->curr_project_id)->where('location_id', '=', Auth::user()->location_id)->get();
$menu = 'report';
return View::make('reports.studentperprogram', compact('programs', 'program', 'menu'));
}
示例13: actionGetProgram
public function actionGetProgram()
{
if (Yii::app()->request->isAjaxRequest) {
if ($_POST) {
$dataProgram = Program::model()->findAll('tahun_anggaran=:tahun_anggaran AND status = 0', array(':tahun_anggaran' => $_POST['tahun_anggaran']));
$this->renderPartial('_program', array('dataProgram' => $dataProgram));
}
}
}
示例14: getCommentProgram
public static function getCommentProgram($thread_id)
{
$comment = Comment::model()->findByPk($thread_id);
if (isset($comment) && !is_null($comment)) {
$prod = Program::model()->findByPk($comment->content_id);
return array('id' => $prod->id, 'name' => $prod->name, 'poster' => $prod->poster, 'type' => $prod->pro_type);
}
return array('id' => '', 'name' => '', 'poster' => '', 'type' => '');
}
示例15: edit
public function edit($id)
{
$course = Course::find($id);
$classifications = Classification::all();
$generations = Generation::all();
$programs = Program::all();
$majors = Major::all();
$menu = 'project';
return View::make('courses.edit', compact('course', 'classifications', 'programs', 'generations', 'majors', 'menu'));
}