本文整理汇总了PHP中files::putContent方法的典型用法代码示例。如果您正苦于以下问题:PHP files::putContent方法的具体用法?PHP files::putContent怎么用?PHP files::putContent使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类files
的用法示例。
在下文中一共展示了files::putContent方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: putContent
function putContent($c)
{
return files::putContent($this->root . $this->base_path, $c);
}
示例2: switchStatus
function switchStatus($p)
{
$xml_path = $this->location . $p . '/desc.xml';
$p_info = $this->_getPluginInfo($xml_path);
$xml = implode('', file($xml_path));
$active = (int) (!$p_info['active']);
$xml = preg_replace('|(<' . $this->type . '[^>]*?active=)"([^"]+)([^>]*>)|ms', '$1"' . $active . '$3', $xml);
if (!files::putContent($xml_path, $xml)) {
return false;
}
return true;
}
示例3: die
<?php
// index.php
// Administration de l'extension : initialisations (tables, fichier de configuration) , information etc. : toutes
// opérations réservées à l'administrateur technique de Wikini.
// Vérification de sécurité
if (!defined("TOOLS_MANAGER")) {
die("accès direct interdit");
}
// Affichage au moyen de la méthode statique buffer::str :
buffer::str('Parametrage de l\'extension akismet ...' . '<br />');
# Liste des thèmes
$plugins_root = dirname(__FILE__) . '/../';
$plugins = new plugins($plugins_root);
$plugins->getPlugins(false);
$plugins_list = $plugins->getPluginsList();
$is_writable = is_writable($plugins_root);
if (!$is_writable) {
buffer::str('<p>' . sprintf(__('The folder %s is not writable, please check its permissions.'), DC_ECRIRE . '/tools/') . '</p>');
} else {
buffer::str('<form action="tools.php" method="post">' . '<p><label for="tool_url">' . __('Entrez votre clef Akismet') . ' :</label>' . form::field('akismet_key', 50, '', $akismet_key) . '</p>' . '<p><input type="submit" class="submit" value="' . __('Install') . '" />' . '<input type="hidden" name="p" value="akismet" /></p>' . '</form>');
}
if (isset($_POST['akismet_key'])) {
$key_path = $plugins->location . $p . '/akismet.key.php';
$content = "<?php\n" . "\$akismet_key='" . $_POST['akismet_key'] . "';\n" . "?>";
if (!files::putContent($key_path, $content)) {
buffer::str('Problème installation de la clef' . '<br />');
} else {
buffer::str('Clef installée !' . '<br />');
}
}