first commit

This commit is contained in:
2023-09-04 21:59:34 +02:00
commit 650ef5b3e1
196 changed files with 24080 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<?
// po poprawkach
namespace admin\factory;
class Languages
{
public function deleteTranslation( $id )
{
global $db;
$query = $db -> prepare( 'DELETE FROM pp_langs_text WHERE id = :id' );
$query -> bindValue( ':id' , $id , \PDO::PARAM_INT );
$query -> execute();
if ( $query -> rowCount() )
return true;
$query -> closeCursor();
return false;
}
}
?>