コード例 #1
0
ファイル: add.php プロジェクト: rafalkowalski2/cmsmilestone
				<div class="form-group">
					<label for="language_symbol"><?php 
echo __('LANGUAGE_SYMBOL');
?>
</label>
    				<input type="text" name="language_symbol" class="form-control" id="language_symbol">
				</div>
			</div>
			<div class="col-sm-4">
				<div class="form-group">
					<label for="version"><?php 
echo __('VERSION');
?>
</label>
    				<input type="text" name="version" class="form-control" id="version">
				</div>
			</div>
			<h2><?php 
echo __('TRANSLATION');
?>
</h2>
			<?php 
echo Helpers_Translations::generate_inputs_add($structure, $category);
?>
			<input type="submit" name="create_translation" value="<?php 
echo __('SAVE');
?>
">
		</form>
	</div>
</div>
コード例 #2
0
ファイル: edit.php プロジェクト: rafalkowalski2/cmsmilestone
echo $translation_detail->language_symbol;
?>
">
				</div>
			</div>
			<div class="col-sm-4">
				<div class="form-group">
					<label for="version"><?php 
echo __('VERSION');
?>
</label>
    				<input type="text" name="version" class="form-control" id="version" value="<?php 
echo $translation_detail->version;
?>
">
				</div>
			</div>
			<h2><?php 
echo __('TRANSLATION');
?>
</h2>
			<?php 
echo Helpers_Translations::generate_inputs_edit($structure, $translation, $category);
?>
			<input type="submit" name="update_translation" value="<?php 
echo __('SAVE');
?>
">
		</form>
	</div>
</div>
コード例 #3
0
ファイル: list.php プロジェクト: rafalkowalski2/cmsmilestone
    Session::instance()->set('display', FALSE);
}
?>
		</div>
	</div>
	<div  class="row">
		<div class="table-responsive">
        	<table class="table table-striped table-hover test-tree">
			<?php 
if ($translations_list) {
    echo '<thead>
            			<tr>
                			<th>#</th>
                			<th>' . __('LANGUAGE') . '</th>
                			<th>' . __('LANGUAGE_SYMBOL') . '</th>
                			<th>' . __('AUTHOR') . '</th>
                			<th>' . __('VERSION') . '</th>
                			<th>' . __('CREATE_DATE') . '</th>
                			<th>' . __('CHANGE_DATE') . '</th>
                			<th>' . __('FUNCTIONS') . '</th>
              			</tr>
        				</thead>
        				<tbody>';
    echo Helpers_Translations::generate_translations_list($translations_list);
    echo '</tbody>';
}
?>
    		</table>			
		</div>
	</div>
</div>
コード例 #4
0
	<footer class="footer">
    	<div class="container-fluid marign-borders">
      		<div class="row">
      			<div class="col-sm-10">
      				<div class="autosave">
      				</div>
      			</div>
      			<div class="col-sm-2">
      				<form role="form" action="<?php 
    echo Request::current()->uri();
    ?>
" method="POST">
      					<div class="form-group">
      						<select class="form-control" name="language_website" onchange="this.form.submit()">
      							<?php 
    echo Helpers_Translations::generate_languages_lists($languages);
    ?>
      						</select>
      					</div>
      				</form>
      			</div>
        	</div>
     	</div>
    </footer>
   	<?php 
}
?>
	</body>
	<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
	<script type="text/javascript" src="/public/static/template/admin/js/moment.min.js"></script>
	<script type="text/javascript" src="/public/static/template/admin/js/bootstrap.js"></script>