This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Cookbook Name:: mysql | |
# Recipe:: default | |
# | |
# Copyright 2008-2011, Opscode, Inc. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=> default: [2014-07-10T13:24:34+00:00] INFO: Setting the run_list to ["recipe[apt]", "recipe[vagrant_1]", "recipe[mysql::server]", "recipe[extras]"] from JSON | |
==> default: [2014-07-10T13:24:34+00:00] INFO: Run List is [recipe[apt], recipe[vagrant_1], recipe[mysql::server], recipe[extras]] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "mainwindow.h" | |
#include "ui_mainwindow.h" | |
#include <QProcess> | |
MainWindow::MainWindow(QWidget *parent) : | |
QMainWindow(parent), | |
ui(new Ui::MainWindow) | |
{ | |
this->process = new QProcess(this); | |
ui->setupUi(this); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Schedule extends Eloquent { | |
/** | |
* The database table used by the model. | |
* | |
* @var string | |
*/ | |
protected $table = 'schedule'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BaseController.php, add the following: | |
protected function show_view($view, $tempData="") | |
{ | |
$settings = array('setting1'=>'value'); | |
$data = array(); | |
if($tempData != "") | |
{ | |
$data['data'] = $tempData; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@section('content') | |
@if (count($sets) == 0) | |
<p>There are no sets defined yet!</p> | |
@else | |
@foreach ($sets as $set) | |
<p>{{ $set->name }}</p> | |
@endforeach | |
@endif | |
@stop |
NewerOlder